Simple Allow Copy
Allow Copy on every websites
Wat is Simple Allow Copy?
Simple Allow Copy is een Chrome-extensie ontwikkeld door simpleallowcopy, en de belangrijkste functie is "Allow Copy on every websites".
Extensie Screenshots
Download het CRX-bestand van de extensie Simple Allow Copy
Download Simple Allow Copy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
### 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
Basisinformatie over de Extensie
Naam | Simple Allow Copy |
ID | aefehdhdciieocakfobpaaolhipkcpgc |
Officiële URL | https://chromewebstore.google.com/detail/simple-allow-copy/aefehdhdciieocakfobpaaolhipkcpgc |
Beschrijving | Allow Copy on every websites |
Bestandsgrootte | 19.5 KB |
Aantal Installaties | 740,895 |
Huidige Versie | 0.8.3 |
Laatst Bijgewerkt | 2021-01-20 |
Publicatiedatum | 2019-07-04 |
Beoordeling | 4.20/5 Totaal 533 Beoordelingen |
Ontwikkelaar | simpleallowcopy |
Betalingswijze | free |
Extensiewebsite | https://github.com/FallenMax/chrome-extension-allow-copy |
Help Pagina-URL | https://github.com/FallenMax/chrome-extension-allow-copy/issues |
Ondersteunde Talen | 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]" } |