Youtube date hider

This extension hide 'Youtube' video publish date

Qu'est-ce que Youtube date hider ?

Youtube date hider est une extension Chrome développée par Arnaud Wilbrod, et sa fonction principale est "This extension hide 'Youtube' video publish date".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Youtube date hider

Téléchargez les fichiers d'extension Youtube date hider au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Youtube date hider Youtube date hider
ID gaohfhcgopflcfimblmjknocmedimepk
URL Officiel https://chromewebstore.google.com/detail/youtube-date-hider/gaohfhcgopflcfimblmjknocmedimepk
Description This extension hide 'Youtube' video publish date
Taille du Fichier 33.54 KB
Nombre d'Installations 152
Version Actuelle 2.1
Dernière Mise à Jour 2024-01-10
Date de Publication 2021-02-10
Évaluation 4.80/5 Total 5 Évaluations
Développeur Arnaud Wilbrod
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.wilbrod.com/datehider.html
Langues Prises en Charge 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": []
        }
    ]
}