ToolBox

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

What is ToolBox?

ToolBox is a Chrome extension developed by jonathanped, and its main feature is "This extension has several different functionalities to make your chrome experience smoother.".

Extension Screenshots

screenshot

Download ToolBox Extension CRX File

Download ToolBox extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ToolBox ToolBox
ID gjaalifmgnmmmfamlndnlcfcjaiapida
Official URL https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida
Description This extension has several different functionalities to make your chrome experience smoother.
File Size 188 KB
Installation Count 107
Current Version 1.0
Last Updated 2015-07-15
Publish Date 2015-07-15
Developer jonathanped
Payment Type free
Supported Languages 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
        }
    ]
}