ToolBox

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

Vad är ToolBox?

ToolBox är en Chrome-tillägg utvecklad av jonathanped, och dess huvudfunktion är "This extension has several different functionalities to make your chrome experience smoother.".

Tilläggsskärmbilder

screenshot

Ladda ner ToolBox-förlängningens CRX-fil

Ladda ner ToolBox-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ToolBox ToolBox
ID gjaalifmgnmmmfamlndnlcfcjaiapida
Officiell webbadress https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida
Beskrivning This extension has several different functionalities to make your chrome experience smoother.
Filstorlek 188 KB
Antal Installationer 107
Aktuell Version 1.0
Senast Uppdaterad 2015-07-15
Publiceringsdatum 2015-07-15
Utvecklare jonathanped
Betalningssätt free
Stödda Språk 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
        }
    ]
}