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

Co je Clipboard Inserter?

Clipboard Inserter je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „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“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Clipboard Inserter

Stáhněte si soubory rozšíření Clipboard Inserter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Clipboard Inserter Clipboard Inserter
ID deahejllghicakhplliloeheabddjajm
Oficiální URL https://chromewebstore.google.com/detail/clipboard-inserter/deahejllghicakhplliloeheabddjajm
Popis 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
Velikost souboru 10.28 KB
Počet instalací 10,000
Aktuální Verze 0.3.2
Poslední Aktualizace 2018-12-06
Datum Vydání 2018-12-06
Hodnocení 4.50/5 Celkem 12 Hodnocení
Vývojář Unknown
Typ Platby free
Webové stránky Rozšíření https://github.com/kmltml/clipboard-inserter
Podporované Jazyky 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"
    }
}