Youtube date hider
This extension hide 'Youtube' video publish date
Co to jest Youtube date hider?
Youtube date hider to rozszerzenie Chrome opracowane przez Arnaud Wilbrod, a jego główną funkcją jest „This extension hide 'Youtube' video publish date”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Youtube date hider
Pobierz pliki rozszerzeń Youtube date hider w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | gaohfhcgopflcfimblmjknocmedimepk |
| Oficjalny URL | https://chromewebstore.google.com/detail/youtube-date-hider/gaohfhcgopflcfimblmjknocmedimepk |
| Opis | This extension hide 'Youtube' video publish date |
| Rozmiar pliku | 33.54 KB |
| Liczba instalacji | 152 |
| Aktualna Wersja | 2.1 |
| Ostatnia Aktualizacja | 2024-01-10 |
| Data Publikacji | 2021-02-10 |
| Ocena | 4.80/5 Łącznie 5 Oceny |
| Deweloper | Arnaud Wilbrod |
| [email protected] | |
| Typ Płatności | free |
| Adres URL Strony Polityki Prywatności | https://www.wilbrod.com/datehider.html |
| Obsługiwane Języki | 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": []
}
]
} | |