Tab Label
This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Tab Label क्या है?
Tab Label Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Label एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with similar title. So you can make them more distinct by changing their title.
एक्सटेंशन की मूल जानकारी
नाम | Tab Label |
ID | jenllplbncahmaikpkppcikmfadialdk |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk |
विवरण | This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with… |
फ़ाइल का आकार | 7.58 KB |
स्थापना संख्या | 252 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2020-04-28 |
प्रकाशन तिथि | 2020-04-25 |
रेटिंग | 2.14/5 कुल 7 रेटिंग्स |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Label", "version": "0.0.1", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "browser_action": { "default_icon": "icon_16.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |