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 |
| 公式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 |
| Eメール | [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": []
}
]
} | |