Simple Allow Copy

Allow Copy on every websites

Was ist Simple Allow Copy?

Simple Allow Copy ist eine Chrome-Erweiterung, die von simpleallowcopy entwickelt wurde, und ihr Hauptmerkmal ist "Allow Copy on every websites".

Erweiterungsscreenshots

screenshot

Simple Allow Copy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple Allow Copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        ###  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                    

Grundlegende Informationen zur Erweiterung

Name Simple Allow Copy Simple Allow Copy
ID aefehdhdciieocakfobpaaolhipkcpgc
Offizielle URL https://chromewebstore.google.com/detail/simple-allow-copy/aefehdhdciieocakfobpaaolhipkcpgc
Beschreibung Allow Copy on every websites
Dateigröße 19.5 KB
Installationsanzahl 740,895
Aktuelle Version 0.8.3
Letztes Update 2021-01-20
Veröffentlichungsdatum 2019-07-04
Bewertung 4.20/5 Insgesamt 533 Bewertungen
Entwickler simpleallowcopy
Zahlungsart free
Erweiterungswebsite https://github.com/FallenMax/chrome-extension-allow-copy
Hilfeseite URL https://github.com/FallenMax/chrome-extension-allow-copy/issues
Unterstützte Sprachen 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]"
}