AI 产品解读Converts the current web page URL into a QR code displayed in the browser popup
Provides quick access to a scannable QR code for any web page URL, eliminating the need to manually copy/paste URLs into external QR code generators
User clicks the extension icon → popup opens → extension reads the current tab URL via chrome.tabs API → generates and displays a QR code encoding that URL → user can scan the QR code with a mobile device or download it. Note: the extension also bundles suspicious fingerprinting (FingerprintJS) and ad-blocker detection code injected into every page via content scripts, which goes well beyond the stated QR code functionality.
Generate QR code from current tab URLDisplay QR code in popup UIDownload QR code as imageQR code rendered using qrcode.react library
- 目标用户
- General web users who need to quickly share page URLs via QR codes / Developers and productivity-focused users
- The source code is heavily minified making deep inspection of the popup.js logic difficult
- js/contentscript.js and js/components.js contain embedded FingerprintJS (browser fingerprinting library) and ad-blocker filter lists, which is highly suspicious for a simple QR code extension — the actual purpose of this injected code is unclear and potentially malicious
- Could not fully verify if the fingerprinting data is sent to rsapi.qentifyrs.com or other external hosts
付费分析未识别到付费功能
The static scan keyword hits for 'subscribe', 'paywall', 'pro', and 'license' are all false positives from embedded libraries (FingerprintJS, React, qrcode.react, ad-blocker filter lists). The 'subscribe' and 'paywall' strings are CSS selectors used in ad-blocker filter lists embedded in js/components.js and js/contentscript.js (e.g., fanboyAnnoyances list containing '[title="Subscribe to our blog"]' and fanboyEnhancedTrackers containing '#issuem-leaky-paywall-articles-zero-remaining-nag'). The 'license' matches are open-source license headers (MIT, ISC). No Stripe, payment API, pricing UI, subscription gate, upgrade prompt, or billing integration was found. No chrome.inAppPayments or web store purchase API usage detected.
- 置信度
- 85
- 支付平台
- --
- 来源
- AI / 中
- 需要登录
- 否
- 登录理由
- No login, account, or authentication flow found in the extension. The extension is a standalone QR code generator that works directly from the browser popup with no account creation or sign-in step. The 'auth' match in manifest.json is a false positive (the word 'author'). The 'session' matches in components.js and contentscript.js are from the embedded FingerprintJS library, not login session management.