Netflix Timestamp Link

Send Netflix links at a specific time in the video

Hvad er Netflix Timestamp Link?

Netflix Timestamp Link er en Chrome-udvidelse udviklet af Kevin Leutzinger, og dens hovedfunktion er "Send Netflix links at a specific time in the video".

Udvidelsesskærmbilleder

screenshot

Download Netflix Timestamp Link-udvidelses-CRX-fil

Download Netflix Timestamp Link-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Netflix Timestamp Link Netflix Timestamp Link
ID nfamdnmnodndjpnfnlebmconoildihib
Officiel URL https://chromewebstore.google.com/detail/netflix-timestamp-link/nfamdnmnodndjpnfnlebmconoildihib
Beskrivelse Send Netflix links at a specific time in the video
Filstørrelse 670 KB
Antal Installationer 283
Nuværende Version 0.1
Senest Opdateret 2018-01-31
Udgivelsesdato 2018-01-30
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Kevin Leutzinger
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}