Better Shorts Player
Adds video player controls to YouTube Shorts
什麼是Better Shorts Player?
Better Shorts Player是由Joubert Van Zyl開發的Chrome擴展程式,該擴展的主要功能是“Adds video player controls to YouTube Shorts”。
擴展截圖
下載Better Shorts Player擴展crx文件
下載Better Shorts Player擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Better Shorts Player adds the ability to scrub through a shorts video, play, pause, adjust volume and mute the video. The controls fade away when not being hovered on as to not be intrusive to the video.
擴展基本資訊
名稱 | Better Shorts Player |
ID | bagcbccbbigjaicnmlcllplhjdfjeimn |
官方網址 | https://chromewebstore.google.com/detail/better-shorts-player/bagcbccbbigjaicnmlcllplhjdfjeimn |
簡介 | Adds video player controls to YouTube Shorts |
檔案大小 | 18.21 KB |
安裝次數 | 802 |
目前版本 | 1.0.0 |
更新時間 | 2023-03-06 |
上架時間 | 2023-03-06 |
評分 | 4.77/5 共 13 次評分 |
開發者 | Joubert Van Zyl |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Shorts Player", "description": "Adds video player controls to YouTube Shorts", "manifest_version": 3, "version": "1.0.0", "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "assets\/pause.png", "assets\/play.png", "assets\/muted.png", "assets\/unmuted.png" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "script.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "permissions": [ "tabs" ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |