URL in title
Reformats the title of each tab according to its URL.
ما هو URL in title؟
URL in title هو إضافة Chrome تم تطويرها بواسطة Guillaume Ryder، والميزة الرئيسية لها هي "Reformats the title of each tab according to its URL.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة URL in title
قم بتنزيل ملفات الامتداد URL in title بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" ] } |