View href

This extension shows the href of all the links on a page along with its title while hovering

Что такое View href?

View href - это расширение Chrome, разработанное https://rajbhadra.com, и его основная функция - "This extension shows the href of all the links on a page along with its title while hovering".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения View href

Скачайте файлы расширений View href в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension helps the user to quickly view the href of a link without looking elsewhere by appending the href of the link to the title of the link. Thus the title and the href both can be viewed by a single glance. If the size of the href is greater than 50 characters, then it truncates the string upto 50 characters.                    

Основная информация о расширении

Название View href View href
ID jfgnoakafnnfkgciganaegpjnnejbimk
Официальный URL https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk
Описание This extension shows the href of all the links on a page along with its title while hovering
Размер файла 3.72 KB
Количество установок 84
Текущая Версия 1.0
Последнее Обновление 2014-07-07
Дата публикации 2014-07-07
Разработчик https://rajbhadra.com
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "View href",
    "short_name": "see href",
    "description": "This extension shows the href of all the links on a page along with its title while hovering",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ]
}