ToolBox

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

ToolBox란 무엇입니까?

ToolBox은(는) jonathanped에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension has several different functionalities to make your chrome experience smoother."입니다.

확장 프로그램 스크린샷

screenshot

ToolBox 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
        }
    ]
}