PowerTab
Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
PowerTab क्या है?
PowerTab Insane द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PowerTab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs.
एक्सटेंशन की मूल जानकारी
नाम | PowerTab |
ID | ihfgepigeejhaclnhdgmoinblbcalccc |
आधिकारिक URL | https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc |
विवरण | Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs. |
फ़ाइल का आकार | 20.13 KB |
स्थापना संख्या | 34 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2013-09-16 |
प्रकाशन तिथि | 2013-09-16 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Insane |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PowerTab", "description": "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.", "version": "1.0", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "contextMenus", "clipboardWrite", "tabs" ], "icons": { "16": "icon16x16.png", "48": "icon48x48.png", "128": "icon128x128.png" }, "browser_action": { "default_icon": "icon16x16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_start" } ] } |