ToolBox

This extension has several different functionalities to make your chrome experience smoother.

什么是ToolBox?

ToolBox是由jonathanped开发的Chrome扩展程序,该扩展的主要功能是“This extension has several different functionalities to make your chrome experience smoother.”。

扩展截图

screenshot

下载ToolBox扩展crx文件

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

扩展使用说明

                        A small extension that gives added functionality to your chromium browser.
Currently ToolBox includes:
 * color coding links - You can have links have different color based on whether they are internal or external

I am planning on having a bunch more features, but if you have any ideas tweet at me @jonpon101


Tags: Color coding links. Color links. Chrome extension change color of links.                    

扩展基本信息

名称 ToolBox ToolBox
ID gjaalifmgnmmmfamlndnlcfcjaiapida
官方URL https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida
简介 This extension has several different functionalities to make your chrome experience smoother.
文件大小 188 KB
安装次数 107
当前版本 1.0
更新时间 2015-07-15
上架时间 2015-07-15
开发者 jonathanped
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ToolBox",
    "description": "This extension has several different functionalities to make your chrome experience smoother.",
    "version": "1.0",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "briefcase.png",
        "default_title": "Settings"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "colorLink.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}