ToolBox
This extension has several different functionalities to make your chrome experience smoother.
Cos'è ToolBox?
ToolBox è un'estensione di Chrome sviluppata da jonathanped, e la sua funzione principale è "This extension has several different functionalities to make your chrome experience smoother.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ToolBox
Scarica i file di estensione ToolBox in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | gjaalifmgnmmmfamlndnlcfcjaiapida |
| URL Ufficiale | https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida |
| Descrizione | This extension has several different functionalities to make your chrome experience smoother. |
| Dimensione del File | 188 KB |
| Conteggio Installazioni | 107 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2015-07-15 |
| Data di Pubblicazione | 2015-07-15 |
| Sviluppatore | jonathanped |
| Tipo di Pagamento | free |
| Lingue Supportate | 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
}
]
} | |