Netflix Timestamp Link

Send Netflix links at a specific time in the video

Netflix Timestamp Link là gì?

Netflix Timestamp Link là một tiện ích mở rộng Chrome được phát triển bởi Kevin Leutzinger, và tính năng chính của nó là "Send Netflix links at a specific time in the video".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Netflix Timestamp Link

Tải xuống các tệp mở rộng Netflix Timestamp Link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Netflix Timestamp Link Netflix Timestamp Link
ID nfamdnmnodndjpnfnlebmconoildihib
URL Chính Thức https://chromewebstore.google.com/detail/netflix-timestamp-link/nfamdnmnodndjpnfnlebmconoildihib
Mô tả Send Netflix links at a specific time in the video
Kích Thước Tệp 670 KB
Số Lần Cài Đặt 283
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2018-01-31
Ngày Phát Hành 2018-01-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Kevin Leutzinger
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}