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
官方網址 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"
    ]
}