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”。
擴展截圖
下載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
擴展基本資訊
名稱 | |
ID | nfamdnmnodndjpnfnlebmconoildihib |
官方網址 | 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" } ] } |