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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" ] } |