Video Timestamp Jumper

Adds a "Jump to Timestamp" control to BitChute, YouTube and most web videos!

Video Timestamp Jumperคืออะไร?

Video Timestamp Jumper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Emerson Design และคุณลักษณะหลักของมันคือ "Adds a "Jump to Timestamp" control to BitChute, YouTube and most web videos!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Timestamp Jumper

ดาวน์โหลดไฟล์ส่วนขยาย Video Timestamp Jumper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        2020111x: FYI this extension is a bit buggy and likely needs work, but development paused for now. Let me know if anyone is interested in this extension being continued though!


This is a simple extension to add a "jump to timestamp" control to almost any web video. So far it works it works well on YouTube, BitChute, DLive, Vimeo and most other sites that feature single-video playback. 

The control will show up in the upper left corner of the video. To use it simply hover over the control (or press "ALT+T") to toggle and use the timestamp control! Pretty basic functionality for now - maybe will expand with custom settings, etc later.

----- NOTES ----- 
* Does not work on all video sites. It may show up on LIVE stream feeds but likely will be buggy if used there
* Disabled on some sites know to have tons of videos per page (i.e. Twitter)
* If I find an existing/better tool to do this kind of thing I'll likely delete this extension
* If anyone has any issues or suggestions please send a msg on the Facebook page
* REMINDER: All Chrome extensions work on other browser like "Brave" and "Dissenter" and those track your activity far less than Google Chrome.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Video Timestamp Jumper Video Timestamp Jumper
ID omnebjacmkdcgnglcfhcfgffondoopgk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/video-timestamp-jumper/omnebjacmkdcgnglcfhcfgffondoopgk
คำอธิบาย Adds a "Jump to Timestamp" control to BitChute, YouTube and most web videos!
ขนาดไฟล์ 159 KB
จำนวนการติดตั้ง 62
เวอร์ชันปัจจุบัน 20200512075106
อัปเดตครั้งล่าสุด 2020-11-18
วันที่เผยแพร่ 2020-06-16
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Emerson Design
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://emersondesignlog.blogspot.com/2020/06/video-timestamp-jumper.html
URL หน้าช่วยเหลือ https://emersondesignlog.blogspot.com/2020/06/video-timestamp-jumper.html
URL หน้านโยบายความเป็นส่วนตัว https://emersondesignlog.blogspot.com/p/privacy-policy.html
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Timestamp Jumper",
    "version": "1.0.009",
    "version_name": "20200512075106",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "description": "Adds a \"Jump to Timestamp\" control to BitChute, YouTube and most web videos!",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/; https:\/\/www.youtube.com\/*; object-src 'self'; child-src https:\/\/www.youtube.com\/* https:\/\/s.ytimg.com",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "*.jpg",
        "*.JPG",
        "*.png",
        "*.PNG",
        "*.woff2",
        "*.ttf",
        "*.woff",
        "vtsj.html",
        "photos.json",
        "*.json"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/www.google.com\/*",
                "*:\/\/google.com\/*",
                "*:\/\/bitchute.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/facebook.com\/*",
                "*:\/\/www.facebook.com\/*",
                "*:\/\/www.twitter.com\/*"
            ],
            "js": [
                "jquery2.js",
                "vtsj.js"
            ],
            "css": [
                "vtsj.css",
                "vtsj_fonts.css"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ]
}