TabZ
This extension is for people who have too many tabs open and need something to help them manage their browser.
TabZ क्या है?
TabZ Andrew Batbouta द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension is for people who have too many tabs open and need something to help them manage their browser."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TabZ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is a chrome extension to help manage too many tabs being open. This will provide users a popup window with all the users tabs open in an easy to read manner. This extension will organize your tabs in the window in alphabetical order and categorized in a logical manner. You can then just click on the name of your page to change your current page to that, or even close the pages. This extension was also built with Matt Poegel.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | inneckpdjbcjkpijhomijlmddbailhcd |
आधिकारिक URL | https://chrome.google.com/webstore/detail/tabz/inneckpdjbcjkpijhomijlmddbailhcd |
विवरण | This extension is for people who have too many tabs open and need something to help them manage their browser. |
फ़ाइल का आकार | 428 KB |
स्थापना संख्या | 32 |
वर्तमान संस्करण | 2.1.1 |
अंतिम अपडेट | 2015-03-14 |
प्रकाशन तिथि | 2015-03-14 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | Andrew Batbouta |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TabZ", "manifest_version": 2, "version": "2.1.1", "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "css": [ "stylesheets\/style.css", "stylesheets\/options_style.css" ], "js": [ "javascript\/jquery-1.11.0.js", "javascript\/script.js", "javascript\/options_script.js" ] } ], "description": "This extension is for people who have too many tabs open and need something to help them manage their browser.", "browser_action": { "default_icon": "images\/icon16.png", "default_title": "Tabz", "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png" }, "options_page": "options.html", "permissions": [ "tabs", "tabCapture", "storage" ], "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+K", "mac": "Command+Shift+Y", "chromeos": "Ctrl+Shift+U", "linux": "Ctrl+Shift+J" } } } } |