Always Copy

A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.

Cos'è Always Copy?

Always Copy è un'estensione di Chrome sviluppata da japamat, e la sua funzione principale è "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Always Copy

Scarica i file di estensione Always 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

                        Lets you copy highlighted text to your clip board even when the page doesn't allow you to do so by right clicking the traditional copy button or using ⌘ + c (windows: ctrl + c) doesn't work.                    

Informazioni di Base sull'Estensione

Nome Always Copy Always Copy
ID pfiieiadpcemdkcaaicekbiokgnojnim
URL Ufficiale https://chromewebstore.google.com/detail/always-copy/pfiieiadpcemdkcaaicekbiokgnojnim
Descrizione A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.
Dimensione del File 6.92 KB
Conteggio Installazioni 288
Versione Corrente 1.0
Ultimo Aggiornamento 2020-06-17
Data di Pubblicazione 2020-06-16
Sviluppatore japamat
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Always Copy",
    "version": "1.0",
    "description": "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "images\/copy_16.png",
            "32": "images\/copy_32.png",
            "48": "images\/copy_48.png",
            "128": "images\/copy_128.png"
        }
    },
    "icons": {
        "16": "images\/copy_16.png",
        "32": "images\/copy_32.png",
        "48": "images\/copy_48.png",
        "128": "images\/copy_128.png"
    },
    "manifest_version": 2
}