Simple Allow Copy
Allow Copy on every websites
What is Simple Allow Copy?
Simple Allow Copy is a Chrome extension developed by simpleallowcopy, and its main feature is "Allow Copy on every websites".
Extension Screenshots
Download Simple Allow Copy Extension CRX File
Download Simple Allow Copy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
### DANGER ### This extension works by intercepting user interactions, and it CAN BREAK some web pages. In these cases, just quit "copy mode" ############### Enable copy and right-click on sites that blocked them Usage: - Click browser action icon to enter "copy mode" for current site Features: - Unlocks copy (for real) - Remembers which site to unblock for future visits - minimal overhead (~300 lines of code) Source code: https://github.com/FallenMax/chrome-extension-allow-copy Buy me a coffee: https://www.buymeacoffee.com/fallenmax
Extension Basic Information
Name | Simple Allow Copy |
ID | aefehdhdciieocakfobpaaolhipkcpgc |
Official URL | https://chromewebstore.google.com/detail/simple-allow-copy/aefehdhdciieocakfobpaaolhipkcpgc |
Description | Allow Copy on every websites |
File Size | 19.5 KB |
Installation Count | 740,895 |
Current Version | 0.8.3 |
Last Updated | 2021-01-20 |
Publish Date | 2019-07-04 |
Rating | 4.20/5 Total 533 Ratings |
Developer | simpleallowcopy |
Payment Type | free |
Extension Website | https://github.com/FallenMax/chrome-extension-allow-copy |
Help Page URL | https://github.com/FallenMax/chrome-extension-allow-copy/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Allow Copy", "version": "0.8.3", "description": "Allow Copy on every websites", "icons": { "16": "icons\/active.png", "48": "icons\/active.png", "128": "icons\/active.png" }, "browser_action": { "default_icon": { "16": "icons\/inactive.png" }, "default_title": "Allow Copy" }, "background": { "scripts": [ "background\/proxy.js", "background\/config.js", "background\/index.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_scripts\/proxy.js", "content_scripts\/unlocker.js", "content_scripts\/index.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "tabs" ], "author": "[email protected]" } |