Add URL to page title
Simply adds the URL to the title bar.
Что такое Add URL to page title?
Add URL to page title - это расширение Chrome, разработанное Simon Perry, и его основная функция - "Simply adds the URL to the title bar.".
Скачать файл CRX расширения Add URL to page title
Скачайте файлы расширений Add URL to page title в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This put the URL of any web page you're on into the page title in the format: Original Title |url:[http://www.the-url.com] But why? In Chrome, other applications used to be able to use Chrome_OmniboxView to get the URL of the page you are on. Since version 28, you can no longer do this. However, you can still get the title of the window. This simple Chrome extension puts the URL into the title to make it available to other applications.
Основная информация о расширении
Название | Add URL to page title |
ID | ghpeimfjbonkimelnkbgekmcboomkgmi |
Официальный URL | https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi |
Описание | Simply adds the URL to the title bar. |
Размер файла | 2.79 KB |
Количество установок | 733 |
Текущая Версия | 1.0 |
Последнее Обновление | 2013-09-17 |
Дата публикации | 2013-09-17 |
Рейтинг | 4.29/5 Всего 7 оценок |
Разработчик | Simon Perry |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add URL to page title", "version": "1.0", "manifest_version": 2, "description": "Simply adds the URL to the title bar.", "permissions": [ "tabs", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ] } ] } |