Clipboard Inserter

A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY

Cos'è Clipboard Inserter?

Clipboard Inserter è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Clipboard Inserter

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

                        This addon, when turned on in a tab monitors your system clipboard and inserts its contents into the page whenever they change. You can customize tag name of the wrapping element, and chose the parent for inserted elements using a css selector in app options.

In order for this extension to work on local files (the file:// protocol) you need to change the "Allow access to file URLs" setting in the extension details.

Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY                    

Informazioni di Base sull'Estensione

Nome Clipboard Inserter Clipboard Inserter
ID deahejllghicakhplliloeheabddjajm
URL Ufficiale https://chromewebstore.google.com/detail/clipboard-inserter/deahejllghicakhplliloeheabddjajm
Descrizione A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY
Dimensione del File 10.28 KB
Conteggio Installazioni 10,000
Versione Corrente 0.3.2
Ultimo Aggiornamento 2018-12-06
Data di Pubblicazione 2018-12-06
Valutazione 4.50/5 Totale 12 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kmltml/clipboard-inserter
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clipboard Inserter",
    "version": "0.3.2",
    "description": "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY",
    "icons": [],
    "applications": {
        "gecko": {
            "id": "@clipboard-inserter"
        }
    },
    "permissions": [
        "activeTab",
        "clipboardRead",
        "storage",
        "file:\/\/*\/*"
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icon\/icon16.png",
            "32": "icon\/icon32.png",
            "64": "icon\/icon64.png"
        },
        "default_title": "Toggle clipboard inserter"
    },
    "background": {
        "page": "bg\/index.html"
    },
    "options_ui": {
        "page": "options.html"
    }
}