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"
    ]
}