ToolBox

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

ToolBox là gì?

ToolBox là một tiện ích mở rộng Chrome được phát triển bởi jonathanped, và tính năng chính của nó là "This extension has several different functionalities to make your chrome experience smoother.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ToolBox

Tải xuống các tệp mở rộng ToolBox dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ToolBox ToolBox
ID gjaalifmgnmmmfamlndnlcfcjaiapida
URL Chính Thức https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida
Mô tả This extension has several different functionalities to make your chrome experience smoother.
Kích Thước Tệp 188 KB
Số Lần Cài Đặt 107
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-07-15
Ngày Phát Hành 2015-07-15
Nhà Phát Triển jonathanped
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}