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.".
Снимки экрана расширения
Скачать файл 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. Основная информация о расширении
| Название | |
| 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
}
]
} | |