URL in title
Reformats the title of each tab according to its URL.
URL in title क्या है?
URL in title Guillaume Ryder द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reformats the title of each tab according to its URL."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में URL in title एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This allows using utilities such as KeePass that auto-fill passwords according to the title of the current window. By default, only the protocol and domain name are appended to the title, but the options page allows full customization. Source code: https://github.com/guilryder/chrome-extensions/tree/main/urlintitle Release notes: v4.0.0: restored suffix preservation logic broken in previous version; migrated to Manifest V3; cleaned up the code v3.0.2: added a mechanism to disable the extension (); added support for pages that delete theelement v3.0.1: added icons
एक्सटेंशन की मूल जानकारी
नाम | URL in title |
ID | ignpacbgnbnkaiooknalneoeladjnfgb |
आधिकारिक URL | https://chromewebstore.google.com/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb |
विवरण | Reformats the title of each tab according to its URL. |
फ़ाइल का आकार | 14.57 KB |
स्थापना संख्या | 32,548 |
वर्तमान संस्करण | 4.0.0 |
अंतिम अपडेट | 2023-12-24 |
प्रकाशन तिथि | 2020-03-11 |
रेटिंग | 4.63/5 कुल 54 रेटिंग्स |
डेवलपर | Guillaume Ryder |
ईमेल | guillaume@ryder.fr |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/guilryder/chrome-extensions/tree/main/urlintitle |
सहायता पृष्ठ URL | https://github.com/guilryder/chrome-extensions/issues?q=label:urlintitle |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "URL in title", "version": "4.0.0", "description": "Reformats the title of each tab according to its URL.", "author": "Guillaume Ryder", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "page_hook.js" ], "run_at": "document_end" } ], "options_page": "options.html", "permissions": [ "storage" ] } |