Youtube date hider

This extension hide 'Youtube' video publish date

Youtube date hiderคืออะไร?

Youtube date hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Arnaud Wilbrod และคุณลักษณะหลักของมันคือ "This extension hide 'Youtube' video publish date"

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

screenshot
screenshot
screenshot

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

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

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

                        This extension allows you to hide the publication date of videos, anywhere on Youtube.

•  If you are tired of seeing the date
•  If it makes you feel old 
•  If you want to play the game "What year is this video from".
•  If you want to make a joke to your friends
Then this extension is made for you ;-)

This extension allows you to hide the date on :
•  The home page
•  Under the video itself
•  In the search pages
•  On the channel pages                    

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

ชื่อ Youtube date hider Youtube date hider
ID gaohfhcgopflcfimblmjknocmedimepk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-date-hider/gaohfhcgopflcfimblmjknocmedimepk
คำอธิบาย This extension hide 'Youtube' video publish date
ขนาดไฟล์ 33.54 KB
จำนวนการติดตั้ง 152
เวอร์ชันปัจจุบัน 2.1
อัปเดตครั้งล่าสุด 2024-01-10
วันที่เผยแพร่ 2021-02-10
คะแนน 4.80/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Arnaud Wilbrod
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.wilbrod.com/datehider.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube date hider",
    "description": "This extension hide 'Youtube' video publish date",
    "version": "2.1",
    "icons": {
        "16": "\/assets\/icons\/icon16.png",
        "32": "\/assets\/icons\/icon32.png",
        "48": "\/assets\/icons\/icon48.png",
        "128": "\/assets\/icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "\/assets\/icons\/icon16.png",
            "32": "\/assets\/icons\/icon32.png",
            "48": "\/assets\/icons\/icon48.png",
            "128": "\/assets\/icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "\/ExtensionBackground.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": false,
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "\/ExtensionContent.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ]
}