ToolBox
This extension has several different functionalities to make your chrome experience smoother.
ToolBox क्या है?
ToolBox jonathanped द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension has several different functionalities to make your chrome experience smoother."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ToolBox एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } ] } |