Netflix Timestamp Link

Send Netflix links at a specific time in the video

Co to jest Netflix Timestamp Link?

Netflix Timestamp Link to rozszerzenie Chrome opracowane przez Kevin Leutzinger, a jego główną funkcją jest „Send Netflix links at a specific time in the video”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Netflix Timestamp Link

Pobierz pliki rozszerzeń Netflix Timestamp 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

                        Send Netflix links that start at a specific time in the video
Source:
https://github.com/kleutzinger/netflix-timestamp                    

Podstawowe informacje o rozszerzeniu

Nazwa Netflix Timestamp Link Netflix Timestamp Link
ID nfamdnmnodndjpnfnlebmconoildihib
Oficjalny URL https://chromewebstore.google.com/detail/netflix-timestamp-link/nfamdnmnodndjpnfnlebmconoildihib
Opis Send Netflix links at a specific time in the video
Rozmiar pliku 670 KB
Liczba instalacji 283
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2018-01-31
Data Publikacji 2018-01-30
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Kevin Leutzinger
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Timestamp Link",
    "description": "Send Netflix links at a specific time in the video",
    "version": "0.1",
    "manifest_version": 2,
    "icons": {
        "16": "\/icons\/icon16.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "64": "\/icons\/icon64.png",
        "128": "\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "\/icons\/icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "*:\/\/*.netflix.com\/*",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "\/jquery.js",
                "\/content_script.js"
            ],
            "run_at": "document_start"
        }
    ]
}