Youtube date hider

This extension hide 'Youtube' video publish date

Youtube date hider क्या है?

Youtube date hider Arnaud Wilbrod द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension hide 'Youtube' video publish date"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Youtube date hider एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
गोपनीयता नीति पृष्ठ 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": []
        }
    ]
}