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
Eメール [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
}