Mindfully. Hide YouTube End Cards
Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip
什麼是Mindfully. Hide YouTube End Cards?
Mindfully. Hide YouTube End Cards是由https://tamalchowdhury.com開發的Chrome擴展程式,該擴展的主要功能是“Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip”。
擴展截圖
下載Mindfully. Hide YouTube End Cards擴展crx文件
下載Mindfully. Hide YouTube End Cards擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Don't you hate when YouTube puts those annoying cards at the end of every music video or a movie clip? Mindfully will automatically hide all end cards from YouTube so you won't miss your favorite scene!
擴展基本資訊
名稱 | Mindfully. Hide YouTube End Cards |
ID | ifmbbceocmponbpifmpkkhnidmgopmmf |
官方網址 | https://chromewebstore.google.com/detail/mindfully-hide-youtube-en/ifmbbceocmponbpifmpkkhnidmgopmmf |
簡介 | Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip |
檔案大小 | 257 KB |
安裝次數 | 2,913 |
目前版本 | 2.0.1 |
更新時間 | 2024-03-04 |
上架時間 | 2020-04-11 |
評分 | 5.00/5 共 19 次評分 |
開發者 | https://tamalchowdhury.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://tamalchowdhury.com |
說明頁面URL | https://twitter.com/tamalchow |
隱私政策頁面URL | https://www.freeprivacypolicy.com/live/9336526f-6e40-4cc5-98ef-7552e7739931 |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mindfully. Hide YouTube End Cards", "version": "2.0.1", "description": "Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip", "permissions": [ "declarativeContent" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "pages\/popup.html", "default_title": "Mindfully. Hides YouTube Distractions" }, "options_page": "pages\/installed.html", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ], "all_frames": false } ], "icons": { "16": "images\/icon128.png", "32": "images\/icon128.png", "48": "images\/icon128.png", "128": "images\/icon128.png" } } |