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.”。
擴展截圖
下載ToolBox擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | gjaalifmgnmmmfamlndnlcfcjaiapida |
| 官方網址 | 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
}
]
} | |