ToolBox

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

Apa itu ToolBox?

ToolBox adalah ekstensi Chrome yang dikembangkan oleh jonathanped, dan fitur utamanya adalah "This extension has several different functionalities to make your chrome experience smoother.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi ToolBox

Unduh file ekstensi ToolBox dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ToolBox ToolBox
ID gjaalifmgnmmmfamlndnlcfcjaiapida
URL Resmi https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida
Deskripsi This extension has several different functionalities to make your chrome experience smoother.
Ukuran File 188 KB
Jumlah Instalasi 107
Versi Saat Ini 1.0
Terakhir Diperbarui 2015-07-15
Tanggal Publikasi 2015-07-15
Pengembang jonathanped
Tipe Pembayaran free
Bahasa yang Didukung 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
        }
    ]
}