Paste From Context Menu

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

Paste From Context Menuとは何ですか?

Paste From Context Menuはcoderによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to save predefined snippets and paste them to text inputs using context menu.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Paste From Context Menu拡張機能のCRXファイルをダウンロード

Paste From Context Menu拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                                            

拡張機能の基本情報

名前 Paste From Context Menu Paste From Context Menu
ID ihfogeehoikadinpdoeapemeolcppfjf
公式URL https://chromewebstore.google.com/detail/paste-from-context-menu/ihfogeehoikadinpdoeapemeolcppfjf
説明 This extension allows you to save predefined snippets and paste them to text inputs using context menu.
ファイルサイズ 20.88 KB
インストール数 3,181
現在のバージョン 1.0.1
最終更新日 2016-10-14
公開日 2016-10-14
評価 3.74/5 合計 23 レビュー
開発者 coder
支払い方法 free
対応言語 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"
    }
}