Youtube hide watched

Hide watched videos on youtube

Youtube hide watchedคืออะไร?

Youtube hide watched เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gkshink และคุณลักษณะหลักของมันคือ "Hide watched videos on youtube"

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

screenshot

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

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

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

                        This extension can hide watched videos from your feed page.

It has two modes: make watched videos semitransparent and hide them at all.                    

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

ชื่อ Youtube hide watched Youtube hide watched
ID cnibhadcgbichplollgpdnnhjbgflmej
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-hide-watched/cnibhadcgbichplollgpdnnhjbgflmej
คำอธิบาย Hide watched videos on youtube
ขนาดไฟล์ 31.02 KB
จำนวนการติดตั้ง 57
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2021-03-07
วันที่เผยแพร่ 2021-02-28
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา gkshink
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gkshi/youtube-chrome-extension
URL หน้าช่วยเหลือ https://github.com/gkshi/youtube-chrome-extension
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube hide watched",
    "description": "Hide watched videos on youtube",
    "author": "George Shinkarev ",
    "version": "1.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    },
    "options_page": "options.html"
}