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
官方網址 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"
    }
}