Tabs count
Counts the number of open browser tabs
Tabs count क्या है?
Tabs count Kanban Labs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Counts the number of open browser tabs"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tabs count एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A very simple extension that gives you the number of currently opened tabs and windows. Check the source code yourself! https://github.com/kanban-labs/tabs-count
एक्सटेंशन की मूल जानकारी
नाम | Tabs count |
ID | iaejhlgcnijhbdilicmoinmiofldhpke |
आधिकारिक URL | https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke |
विवरण | Counts the number of open browser tabs |
फ़ाइल का आकार | 6.83 KB |
स्थापना संख्या | 168 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2022-09-15 |
प्रकाशन तिथि | 2022-09-14 |
रेटिंग | 3.75/5 कुल 4 रेटिंग्स |
डेवलपर | Kanban Labs |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://kanban.ee |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tabs count", "version": "1.0.1", "manifest_version": 3, "description": "Counts the number of open browser tabs", "action": { "default_title": "Tab count", "default_icon": "icons\/icon-48x48.png" }, "permissions": [ "notifications" ], "icons": { "48": "icons\/icon-48x48.png", "144": "icons\/icon-144x144.png" }, "content_security_policy": { "extension_pages": "default-src 'self';" }, "background": { "service_worker": "js\/background.js" } } |