Deep Link

Context menu item for linking to a particular element on a page.

Что такое Deep Link?

Deep Link - это расширение Chrome, разработанное jtbandes, и его основная функция - "Context menu item for linking to a particular element on a page.".

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

screenshot

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

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

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

                        Like that "¶" icon you know and love... anywhere.

Right-click on the page and choose "Deep Link" to link directly to the nearest element, if available. (http://the/page#nearest-section)                    

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

Название Deep Link Deep Link
ID dnlfigefegjefjojijlpgiicodlgdhci
Официальный URL https://chromewebstore.google.com/detail/deep-link/dnlfigefegjefjojijlpgiicodlgdhci
Описание Context menu item for linking to a particular element on a page.
Размер файла 4.13 KB
Количество установок 159
Текущая Версия 0.1
Последнее Обновление 2015-05-31
Дата публикации 2015-05-31
Рейтинг 4.00/5 Всего 4 оценок
Разработчик jtbandes
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Deep Link",
    "author": "Jacob Bandes-Storch",
    "version": "0.1",
    "description": "Context menu item for linking to a particular element on a page.",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "eventPage.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}