Show Tab List
Show all sites in the current page
Show Tab List क्या है?
Show Tab List pinibalilihamelech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show all sites in the current page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Show Tab List एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Press Ctrl+Shift+Y to view a list of the sites used in the current page.
एक्सटेंशन की मूल जानकारी
नाम | Show Tab List |
ID | pjpbfdjmmlnelgbkffopkgpggeeaildc |
आधिकारिक URL | https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc |
विवरण | Show all sites in the current page |
फ़ाइल का आकार | 8.67 KB |
स्थापना संख्या | 14,454 |
वर्तमान संस्करण | 0.1 |
अंतिम अपडेट | 2015-03-13 |
प्रकाशन तिथि | 2015-03-13 |
रेटिंग | 2.11/5 कुल 9 रेटिंग्स |
डेवलपर | pinibalilihamelech |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Tab List", "description": "Show all sites in the current page", "version": "0.1", "manifest_version": 2, "icons": { "16": "resources\/images\/icon-16.png", "48": "resources\/images\/icon-48.png", "128": "resources\/images\/icon-128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ], "background": { "scripts": [ "resources\/js\/myBackground.js" ] }, "commands": { "toggle-tab-list": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Toggle tab list" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "resources\/js\/page.js" ] } ] } |