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
官方URL 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
}