Youtube date hider
This extension hide 'Youtube' video publish date
什麼是Youtube date hider?
Youtube date hider是由Arnaud Wilbrod開發的Chrome擴展程式,該擴展的主要功能是“This extension hide 'Youtube' video publish date”。
擴展截圖
下載Youtube date hider擴展crx文件
下載Youtube date hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | gaohfhcgopflcfimblmjknocmedimepk |
| 官方網址 | 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": []
}
]
} | |