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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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": []
        }
    ]
}