Youtube date hider
This extension hide 'Youtube' video publish date
Was ist Youtube date hider?
Youtube date hider ist eine Chrome-Erweiterung, die von Arnaud Wilbrod entwickelt wurde, und ihr Hauptmerkmal ist "This extension hide 'Youtube' video publish date".
Erweiterungsscreenshots
Youtube date hider-Erweiterungs-CRX-Datei herunterladen
Laden Sie Youtube date hider-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | gaohfhcgopflcfimblmjknocmedimepk | 
| Offizielle URL | https://chromewebstore.google.com/detail/youtube-date-hider/gaohfhcgopflcfimblmjknocmedimepk | 
| Beschreibung | This extension hide 'Youtube' video publish date | 
| Dateigröße | 33.54 KB | 
| Installationsanzahl | 152 | 
| Aktuelle Version | 2.1 | 
| Letztes Update | 2024-01-10 | 
| Veröffentlichungsdatum | 2021-02-10 | 
| Bewertung | 4.80/5 Insgesamt 5 Bewertungen | 
| Entwickler | Arnaud Wilbrod | 
| [email protected] | |
| Zahlungsart | free | 
| URL der Datenschutzrichtlinien-Seite | https://www.wilbrod.com/datehider.html | 
| Unterstützte Sprachen | 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": []
        }
    ]
}  |  |