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

Qu'est-ce que Clipboard Inserter ?

Clipboard Inserter est une extension Chrome développée par Unknown, et sa fonction principale est "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".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Clipboard Inserter

Téléchargez les fichiers d'extension Clipboard Inserter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Clipboard Inserter Clipboard Inserter
ID deahejllghicakhplliloeheabddjajm
URL Officiel https://chromewebstore.google.com/detail/clipboard-inserter/deahejllghicakhplliloeheabddjajm
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
Taille du Fichier 10.28 KB
Nombre d'Installations 10,000
Version Actuelle 0.3.2
Dernière Mise à Jour 2018-12-06
Date de Publication 2018-12-06
Évaluation 4.50/5 Total 12 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension https://github.com/kmltml/clipboard-inserter
Langues Prises en Charge 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"
    }
}