Netflix Timestamp Link
Send Netflix links at a specific time in the video
What is Netflix Timestamp Link?
Netflix Timestamp Link is a Chrome extension developed by Kevin Leutzinger, and its main feature is "Send Netflix links at a specific time in the video".
Extension Screenshots
Download Netflix Timestamp Link Extension CRX File
Download Netflix Timestamp Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Send Netflix links that start at a specific time in the video Source: https://github.com/kleutzinger/netflix-timestamp
Extension Basic Information
Name | |
ID | nfamdnmnodndjpnfnlebmconoildihib |
Official URL | https://chromewebstore.google.com/detail/netflix-timestamp-link/nfamdnmnodndjpnfnlebmconoildihib |
Description | Send Netflix links at a specific time in the video |
File Size | 670 KB |
Installation Count | 283 |
Current Version | 0.1 |
Last Updated | 2018-01-31 |
Publish Date | 2018-01-30 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Kevin Leutzinger |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |