ToolBox

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

Co to jest ToolBox?

ToolBox to rozszerzenie Chrome opracowane przez jonathanped, a jego główną funkcją jest „This extension has several different functionalities to make your chrome experience smoother.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ToolBox

Pobierz pliki rozszerzeń ToolBox w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ToolBox ToolBox
ID gjaalifmgnmmmfamlndnlcfcjaiapida
Oficjalny URL https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida
Opis This extension has several different functionalities to make your chrome experience smoother.
Rozmiar pliku 188 KB
Liczba instalacji 107
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2015-07-15
Data Publikacji 2015-07-15
Deweloper jonathanped
Typ Płatności free
Obsługiwane Języki 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
        }
    ]
}