Paste From Context Menu

This extension allows you to save predefined snippets and paste them to text inputs using context menu.

Was ist Paste From Context Menu?

Paste From Context Menu ist eine Chrome-Erweiterung, die von coder entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to save predefined snippets and paste them to text inputs using context menu.".

Erweiterungsscreenshots

screenshot
screenshot

Paste From Context Menu-Erweiterungs-CRX-Datei herunterladen

Laden Sie Paste From Context Menu-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                                            

Grundlegende Informationen zur Erweiterung

Name Paste From Context Menu Paste From Context Menu
ID ihfogeehoikadinpdoeapemeolcppfjf
Offizielle URL https://chromewebstore.google.com/detail/paste-from-context-menu/ihfogeehoikadinpdoeapemeolcppfjf
Beschreibung This extension allows you to save predefined snippets and paste them to text inputs using context menu.
Dateigröße 20.88 KB
Installationsanzahl 3,181
Aktuelle Version 1.0.1
Letztes Update 2016-10-14
Veröffentlichungsdatum 2016-10-14
Bewertung 3.74/5 Insgesamt 23 Bewertungen
Entwickler coder
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Paste From Context Menu",
    "short_name": "pastefromcontextmenu",
    "version": "1.0.1",
    "author": "Coder",
    "description": "This extension allows you to save predefined snippets and paste them to text inputs using context menu.",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "64": "icons\/64x64.png",
        "128": "icons\/128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "contextMenus",
        "clipboardRead",
        "clipboardWrite",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_title": "Paste From Context Menu",
        "default_icon": "icons\/48x48.png",
        "default_popup1": "popup.html"
    }
}