Inject sidebar

Inject a sidebar on the current tab when the page action is clicked

Inject sidebarとは何ですか?

Inject sidebarはwhittlrappによって開発されたChromeの拡張機能で、その主な機能は「Inject a sidebar on the current tab when the page action is clicked」です。

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

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

拡張機能の使用方法

                                            

拡張機能の基本情報

名前 Inject sidebar Inject sidebar
ID kbbmnigcllcnemhdlaenejpkaklcginf
公式URL https://chromewebstore.google.com/detail/inject-sidebar/kbbmnigcllcnemhdlaenejpkaklcginf
説明 Inject a sidebar on the current tab when the page action is clicked
ファイルサイズ 24.6 KB
インストール数 12
現在のバージョン 0.2
最終更新日 2016-09-01
公開日 2016-08-31
開発者 whittlrapp
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inject sidebar",
    "manifest_version": 2,
    "description": "Inject a sidebar on the current tab when the page action is clicked",
    "version": "0.2",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "whittlr.logo.png",
        "default_title": "Inject sidebar"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        "frame.html"
    ]
}