YouTube Video Hider
Hide youtube videos and thumbnails
什麼是YouTube Video Hider?
YouTube Video Hider是由Diogo Peres開發的Chrome擴展程式,該擴展的主要功能是“Hide youtube videos and thumbnails”。
擴展截圖
下載YouTube Video Hider擴展crx文件
下載YouTube Video Hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Increase your productivity and don't get distracted by youtube videos while listening to music. This app has multiple options: * Turn all videos and thumbnails to black; * Minimize main video to show only the timeline. Minimize all the thumbnail's and zoom on hover. * Invert the color of all videos and thumbnails. This app is open-source and all the code is on: https://github.com/diogoperes/youtube-video-hider-app
擴展基本資訊
名稱 | |
ID | bppihnfgnlpklmhaojomngahgfpmpnbi |
官方網址 | https://chrome.google.com/webstore/detail/youtube-video-hider/bppihnfgnlpklmhaojomngahgfpmpnbi |
簡介 | Hide youtube videos and thumbnails |
檔案大小 | 41.22 KB |
安裝次數 | 123 |
目前版本 | 0.0.0.4 |
更新時間 | 2019-11-30 |
上架時間 | 2019-11-30 |
評分 | 4.78/5 共 9 次評分 |
開發者 | Diogo Peres |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://www.mrperes.com/youtube-video-hider/ |
說明頁面URL | http://www.mrperes.com/youtube-video-hider/ |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Video Hider", "version": "0.0.0.4", "description": "Hide youtube videos and thumbnails", "browser_action": { "default_icon": ".\/img\/eye.png", "default_popup": ".\/popup.html" }, "web_accessible_resources": [ "css\/hide.css", "css\/minimize.css", "css\/invert.css" ], "author": "Diogo Peres", "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ ".\/js\/contentscript.js", ".\/js\/hideVideoScript.js", ".\/js\/showVideoScript.js" ], "run_at": "document_end" } ], "background": { "scripts": [ ".\/js\/background.js" ], "persistent": true } } |