Wrapper Bot

A Chrome extension for easily wrapping selected text in custom defined HTML templates.

Wrapper Botとは何ですか?

Wrapper BotはJay Batsによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension for easily wrapping selected text in custom defined HTML templates.」です。

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

screenshot

Wrapper Bot拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Wrapper Bot allows you to wrap your text selections in custom HTML wrappers.

This way, you can easily apply often used stylings without having to manually type the HTML over and over again.                    

拡張機能の基本情報

名前 Wrapper Bot Wrapper Bot
ID omnmbcgclimiokggjlaljacckoaieagi
公式URL https://chromewebstore.google.com/detail/wrapper-bot/omnmbcgclimiokggjlaljacckoaieagi
説明 A Chrome extension for easily wrapping selected text in custom defined HTML templates.
ファイルサイズ 154 KB
インストール数 38
現在のバージョン 1.0
最終更新日 2014-05-29
公開日 2014-05-29
評価 4.00/5 合計 1 レビュー
開発者 Jay Bats
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wrapper Bot",
    "version": "1.0",
    "manifest_version": 2,
    "description": "A Chrome extension for easily wrapping selected text in custom defined HTML templates.",
    "browser_action": {
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-1.9.1-min.js",
                "content.js"
            ]
        }
    ]
}