ToolBox
This extension has several different functionalities to make your chrome experience smoother.
Was ist ToolBox?
ToolBox ist eine Chrome-Erweiterung, die von jonathanped entwickelt wurde, und ihr Hauptmerkmal ist "This extension has several different functionalities to make your chrome experience smoother.".
Erweiterungsscreenshots
ToolBox-Erweiterungs-CRX-Datei herunterladen
Laden Sie ToolBox-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | gjaalifmgnmmmfamlndnlcfcjaiapida |
Offizielle URL | https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida |
Beschreibung | This extension has several different functionalities to make your chrome experience smoother. |
Dateigröße | 188 KB |
Installationsanzahl | 107 |
Aktuelle Version | 1.0 |
Letztes Update | 2015-07-15 |
Veröffentlichungsdatum | 2015-07-15 |
Entwickler | jonathanped |
Zahlungsart | free |
Unterstützte Sprachen | 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 } ] } |