AI 产品解读Re-enable copy/paste and right-click functionality on websites that have disabled these browser features
Many websites use JavaScript to block text selection, copy/paste, and right-click context menus (e.g., to prevent content scraping). This extension overrides those restrictions so users can freely interact with web content.
User installs extension → clicks the extension icon → toggles 'Enable copy paste for all websites' checkbox in popup → refreshes the page → extension content script (enable_copy.js) runs on all pages, overriding copy/paste/right-click restrictions. To disable, untick the checkbox and refresh.
Toggle checkbox to globally enable/disable copy/paste reactivation for all websitesInjects CSS user-select override to allow text selectionNullifies document-level event handlers that block copy/cut/paste/contextmenu/selectstart/dragStops event propagation on restricted events to bypass website JavaScript blocksWorks on all HTTP/HTTPS websites via content script injection
- 目标用户
- General web users who need to copy text from websites that block copy/paste / Students and researchers who need to reference content from restrictive sites / Users frustrated by disabled right-click context menus on various websites
- The extension is built with Dart compiled to JavaScript, making source-level analysis more complex due to minified/generated code patterns.
- The license_info.html page is entirely commented out, so its intended content could not be inspected directly.
- Cannot fully verify whether the webvoom.com links in the popup offer any paid services (e.g., digital marketing courses), but those are external to the extension's own functionality.
付费分析未识别到付费功能
No paid features, payment gates, upgrade prompts, subscription checks, or billing logic were found in the source code. The 'pro' keyword hits are all false positives from JavaScript prototype chain code (e.g., 'cls.prototype'). The 'license' references are an open-source license info display page (license_info.html is fully commented out), not a paid license enforcement mechanism. The CustomServiceCrxLicenseValidator is instantiated with 'false' (line 18878), suggesting license validation is disabled. No payment platforms (Stripe, PayPal, etc.) are referenced. The extension's core feature (toggle checkbox) works without any payment.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension operates entirely locally using chrome.storage.local for its enable/disable state. No authentication flows, user account creation, or API calls requiring credentials were found. The 'token', 'session', and 'auth' keyword hits in the compiled Dart JS are false positives: 'DomTokenList' (DOM API), tab 'sessionId' (Chrome Tabs API property), 'GetAuthTokenDetails' (Chrome identity API class stub definitions, not invoked), and 'schemeAuth' (URI parsing variable). No login UI or account creation flow exists.