ToolBox
This extension has several different functionalities to make your chrome experience smoother.
Hvad er ToolBox?
ToolBox er en Chrome-udvidelse udviklet af jonathanped, og dens hovedfunktion er "This extension has several different functionalities to make your chrome experience smoother.".
Udvidelsesskærmbilleder
Download ToolBox-udvidelses-CRX-fil
Download ToolBox-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | gjaalifmgnmmmfamlndnlcfcjaiapida |
Officiel URL | https://chrome.google.com/webstore/detail/toolbox/gjaalifmgnmmmfamlndnlcfcjaiapida |
Beskrivelse | This extension has several different functionalities to make your chrome experience smoother. |
Filstørrelse | 188 KB |
Antal Installationer | 107 |
Nuværende Version | 1.0 |
Senest Opdateret | 2015-07-15 |
Udgivelsesdato | 2015-07-15 |
Udvikler | jonathanped |
Betalingsmetode | free |
Understøttede Sprog | 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 } ] } |