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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
        }
    ]
}