Simple Allow Copy
Allow Copy on every websites
Qu'est-ce que Simple Allow Copy ?
Simple Allow Copy est une extension Chrome développée par simpleallowcopy, et sa fonction principale est "Allow Copy on every websites".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Simple Allow Copy
Téléchargez les fichiers d'extension Simple Allow Copy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
### 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
Informations de Base sur l'Extension
Nom | Simple Allow Copy |
ID | aefehdhdciieocakfobpaaolhipkcpgc |
URL Officiel | https://chromewebstore.google.com/detail/simple-allow-copy/aefehdhdciieocakfobpaaolhipkcpgc |
Description | Allow Copy on every websites |
Taille du Fichier | 19.5 KB |
Nombre d'Installations | 740,895 |
Version Actuelle | 0.8.3 |
Dernière Mise à Jour | 2021-01-20 |
Date de Publication | 2019-07-04 |
Évaluation | 4.20/5 Total 533 Évaluations |
Développeur | simpleallowcopy |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/FallenMax/chrome-extension-allow-copy |
URL de la Page d'Aide | https://github.com/FallenMax/chrome-extension-allow-copy/issues |
Langues Prises en Charge | 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]" } |