Quick Launch Toolbar
This extension launches links from a toolbar in a new tab.
Quick Launch Toolbar क्या है?
Quick Launch Toolbar onowrouzidev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension launches links from a toolbar in a new tab."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Quick Launch Toolbar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is a simple but highly customizable quick launch toolbar that stays fixed to the top of web pages to launch new tabs to sites of your choice. Depending on feedback, I may add more customizability and features. Currently, there are some conflicts with some websites. This is mostly related to a site's dynamic CSS or security settings conflicting with non-secure image url's.
एक्सटेंशन की मूल जानकारी
नाम | Quick Launch Toolbar |
ID | lakamljdifimmlphbhhhbdlonfemfpjf |
आधिकारिक URL | https://chromewebstore.google.com/detail/quick-launch-toolbar/lakamljdifimmlphbhhhbdlonfemfpjf |
विवरण | This extension launches links from a toolbar in a new tab. |
फ़ाइल का आकार | 74.48 KB |
स्थापना संख्या | 306 |
वर्तमान संस्करण | 0.1.1 |
अंतिम अपडेट | 2016-07-25 |
प्रकाशन तिथि | 2016-07-25 |
डेवलपर | onowrouzidev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Launch Toolbar", "description": "This extension launches links from a toolbar in a new tab.", "version": "0.1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "html\/popup.html" }, "icons": { "64": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/jquery-2.2.4.min.js", "js\/content_script.js" ] } ], "permissions": [ "tabs", "storage", "https:\/\/ajax.googleapis.com\/" ] } |