Easy Copy

Copy anywhere

Cos'è Easy Copy?

Easy Copy è un'estensione di Chrome sviluppata da LoryHuang, e la sua funzione principale è "Copy anywhere".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Easy Copy

Scarica i file di estensione Easy Copy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        简单地解除复制限制,让用户随意复制文本,不受网站限制                    

Informazioni di Base sull'Estensione

Nome Easy Copy Easy Copy
ID elcaegdandcagckkngpjelhgeakcmeif
URL Ufficiale https://chromewebstore.google.com/detail/easy-copy/elcaegdandcagckkngpjelhgeakcmeif
Descrizione Copy anywhere
Dimensione del File 167 KB
Conteggio Installazioni 402
Versione Corrente 0.1.0
Ultimo Aggiornamento 2020-09-03
Data di Pubblicazione 2020-09-02
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore LoryHuang
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/hzmming/easy-copy
URL della Pagina di Aiuto https://github.com/hzmming/easy-copy
Lingue Supportate zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Copy",
    "description": "Copy anywhere",
    "author": "LoryHuang && AmadeusXie",
    "version": "0.1.0",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_title": "Easy Copy",
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/16-gray.png",
            "32": "icons\/32-gray.png",
            "48": "icons\/48-gray.png",
            "128": "icons\/128-gray.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "injects.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}