Insert Signature

Insert a signature into a text field.

什麼是Insert Signature?

Insert Signature是由Nick Dollimount開發的Chrome擴展程式,該擴展的主要功能是“Insert a signature into a text field.”。

擴展截圖

screenshot
screenshot

下載Insert Signature擴展crx文件

下載Insert Signature擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Insert a predefined signature text block to any text field.
Signature is placed at the cursor location.                    

擴展基本資訊

名稱 Insert Signature Insert Signature
ID popjgphflfnpefcncljdkaenmellboei
官方網址 https://chrome.google.com/webstore/detail/insert-signature/popjgphflfnpefcncljdkaenmellboei
簡介 Insert a signature into a text field.
檔案大小 23.16 KB
安裝次數 8,973
目前版本 0.0.0.5
更新時間 2014-07-29
上架時間 2014-07-29
評分 3.09/5 共 11 次評分
開發者 Nick Dollimount
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Insert Signature",
    "description": "Insert a signature into a text field.",
    "version": "0.0.0.5",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "browser_action": {
        "default_icon": "128x128.png",
        "default_title": "Insert Signature Options",
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "backgroundScript.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "manifest_version": 2
}