Deep Link

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

Co to jest Deep Link?

Deep Link to rozszerzenie Chrome opracowane przez jtbandes, a jego główną funkcją jest „Context menu item for linking to a particular element on a page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Deep Link

Pobierz pliki rozszerzeń Deep Link w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa Deep Link Deep Link
ID dnlfigefegjefjojijlpgiicodlgdhci
Oficjalny URL https://chromewebstore.google.com/detail/deep-link/dnlfigefegjefjojijlpgiicodlgdhci
Opis Context menu item for linking to a particular element on a page.
Rozmiar pliku 4.13 KB
Liczba instalacji 159
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2015-05-31
Data Publikacji 2015-05-31
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper jtbandes
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}