Watchmarker for Youtube

Automatically mark videos on Youtube that you have already watched.

Watchmarker for Youtubeคืออะไร?

Watchmarker for Youtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sniklaus.com และคุณลักษณะหลักของมันคือ "Automatically mark videos on Youtube that you have already watched."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Watchmarker for Youtube

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

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

                        Youtube keeps track of your watch history and automatically marks videos that you have already watched. They however only mark recently seen videos, which is kind of disappointing. This addon fixes this issue and keeps track of your entire watch history, such that not only the recently seen videos are being marked.

***Does this work with the old Youtube theme?*** I am afraid that only the new theme is supported. If you do not know which theme you are currently using then it is very likely the new one.

***How can the persistence of the database be ensured?*** There is an export and import feature, which makes it easy to create a backup of the history. This backup can  easily be archived such that you can ensure that you never lose your history.

***How can I make sure that the database is complete?*** The automatic synchronization only considers the recent activity. You are thus encouraged to manually initiate a complete synchronization in the settings, which incorporates as much of your history as possible.

***Something is broken, I demand a fix!*** Please be considerate when leaving a review, this is a free extension that I invest my spare time in. If there is something that does not work then please file an issue on Github where it is easier for me to track.                    

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

ชื่อ Watchmarker for Youtube Watchmarker for Youtube
ID pfkkfbfdhomeagojoahjmkojeeepcolc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/watchmarker-for-youtube/pfkkfbfdhomeagojoahjmkojeeepcolc
คำอธิบาย Automatically mark videos on Youtube that you have already watched.
ขนาดไฟล์ 361 KB
จำนวนการติดตั้ง 9,680
เวอร์ชันปัจจุบัน 4.6.1
อัปเดตครั้งล่าสุด 2024-02-05
วันที่เผยแพร่ 2020-04-26
คะแนน 4.65/5 รวมทั้งหมด 80 คะแนน
ผู้พัฒนา https://sniklaus.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/sniklaus/youtube-watchmarker/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Watchmarker for Youtube",
    "description": "Automatically mark videos on Youtube that you have already watched.",
    "homepage_url": "https:\/\/sniklaus.com\/",
    "version": "4.6.1",
    "permissions": [
        "alarms",
        "downloads",
        "history",
        "tabs",
        "cookies",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/www.youtube.com\/*"
    ],
    "options_ui": {
        "page": "content\/index.html",
        "open_in_tab": true
    },
    "icons": {
        "72": "content\/icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [],
            "js": [
                "youtube.js"
            ]
        }
    ],
    "browser_action": {
        "browser_style": false,
        "default_title": "Watchmarker for Youtube",
        "default_icon": {
            "72": "content\/icon.png"
        }
    }
}