Tab Number
Number tabs when the ctrl/alt/cmd button is held.
Tab Number क्या है?
Tab Number stugrammer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Number tabs when the ctrl/alt/cmd button is held."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Number एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A tool for those who uses ctrl/alt/cmd+number to jump between tabs. Display page number when you hold ctrl/alt/cmd key. Version 0.2.0.1: * Now the extension also works with pages having no favicon. * Fixed a bug that the number is not shown on some pages, such as google group. Version 0.1.0.2: * Show tab numbers when alt is held in non-Mac system. * Fixed a bug that tab numbers stay if page is closed with ctrl/cmd+w. * Fixed a bug that tab numbers stay if control is switched to another window when ctrl/alt/cmd is held.
एक्सटेंशन की मूल जानकारी
नाम | Tab Number |
ID | fijaenjgknobfdombbdchngpamggajpm |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-number/fijaenjgknobfdombbdchngpamggajpm |
विवरण | Number tabs when the ctrl/alt/cmd button is held. |
फ़ाइल का आकार | 27.02 KB |
स्थापना संख्या | 1,847 |
वर्तमान संस्करण | 0.2.0.1 |
अंतिम अपडेट | 2013-12-03 |
प्रकाशन तिथि | 2013-12-03 |
रेटिंग | 3.36/5 कुल 55 रेटिंग्स |
डेवलपर | stugrammer |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Number", "description": "Number tabs when the ctrl\/alt\/cmd button is held.", "version": "0.2.0.1", "icons": { "48": "icon-48.gif", "128": "icon-128.gif" }, "permissions": [ "tabs", "*:\/\/*\/*", "chrome:\/\/favicon\/" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "num_tab.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "favicon\/favicon-1.gif", "favicon\/favicon-2.gif", "favicon\/favicon-3.gif", "favicon\/favicon-4.gif", "favicon\/favicon-5.gif", "favicon\/favicon-6.gif", "favicon\/favicon-7.gif", "favicon\/favicon-8.gif", "favicon\/favicon-9.gif" ] } |