ToolBox
This extension has several different functionalities to make your chrome experience smoother.
Wat is ToolBox?
ToolBox is een Chrome-extensie ontwikkeld door jonathanped, en de belangrijkste functie is "This extension has several different functionalities to make your chrome experience smoother.".
Extensie Screenshots
Download het CRX-bestand van de extensie ToolBox
Download ToolBox-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | gjaalifmgnmmmfamlndnlcfcjaiapida |
Officiële URL | https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida |
Beschrijving | This extension has several different functionalities to make your chrome experience smoother. |
Bestandsgrootte | 188 KB |
Aantal Installaties | 107 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2015-07-15 |
Publicatiedatum | 2015-07-15 |
Ontwikkelaar | jonathanped |
Betalingswijze | free |
Ondersteunde Talen | 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 } ] } |