Quick Launch Toolbar

This extension launches links from a toolbar in a new tab.

什么是Quick Launch Toolbar?

Quick Launch Toolbar是由onowrouzidev开发的Chrome扩展程序,该扩展的主要功能是“This extension launches links from a toolbar in a new tab.”。

扩展截图

screenshot
screenshot
screenshot

下载Quick Launch Toolbar扩展crx文件

下载Quick Launch Toolbar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is a simple but highly customizable quick launch toolbar that stays fixed to the top of web pages to launch new tabs to sites of your choice. Depending on feedback, I may add more customizability and features.

Currently, there are some conflicts with some websites. This is mostly related to a site's dynamic CSS or security settings conflicting with non-secure image url's.                    

扩展基本信息

名称 Quick Launch Toolbar Quick Launch Toolbar
ID lakamljdifimmlphbhhhbdlonfemfpjf
官方URL https://chromewebstore.google.com/detail/quick-launch-toolbar/lakamljdifimmlphbhhhbdlonfemfpjf
简介 This extension launches links from a toolbar in a new tab.
文件大小 74.48 KB
安装次数 306
当前版本 0.1.1
更新时间 2016-07-25
上架时间 2016-07-25
开发者 onowrouzidev
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Launch Toolbar",
    "description": "This extension launches links from a toolbar in a new tab.",
    "version": "0.1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "64": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/jquery-2.2.4.min.js",
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ]
}