Netflix Timestamp Link

Send Netflix links at a specific time in the video

什么是Netflix Timestamp Link?

Netflix Timestamp Link是由Kevin Leutzinger开发的Chrome扩展程序,该扩展的主要功能是“Send Netflix links at a specific time in the video”。

扩展截图

screenshot

下载Netflix Timestamp Link扩展crx文件

下载Netflix Timestamp Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Netflix Timestamp Link Netflix Timestamp Link
ID nfamdnmnodndjpnfnlebmconoildihib
官方URL https://chromewebstore.google.com/detail/netflix-timestamp-link/nfamdnmnodndjpnfnlebmconoildihib
简介 Send Netflix links at a specific time in the video
文件大小 670 KB
安装次数 283
当前版本 0.1
更新时间 2018-01-31
上架时间 2018-01-30
评分 5.00/5 共2次评分
开发者 Kevin Leutzinger
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        }
    ]
}