ToolBox

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

ToolBoxคืออะไร?

ToolBox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jonathanped และคุณลักษณะหลักของมันคือ "This extension has several different functionalities to make your chrome experience smoother."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ToolBox

ดาวน์โหลดไฟล์ส่วนขยาย ToolBox ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ToolBox ToolBox
ID gjaalifmgnmmmfamlndnlcfcjaiapida
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida
คำอธิบาย This extension has several different functionalities to make your chrome experience smoother.
ขนาดไฟล์ 188 KB
จำนวนการติดตั้ง 107
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-07-15
วันที่เผยแพร่ 2015-07-15
ผู้พัฒนา jonathanped
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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
        }
    ]
}