FullTube
This a extension to maximize the youtube player size.
什麼是FullTube?
FullTube是由https://bijinapps.blogspot.com開發的Chrome擴展程式,該擴展的主要功能是“This a extension to maximize the youtube player size.”。
擴展截圖
下載FullTube擴展crx文件
下載FullTube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension enlarge the YouTube player to entire page. No ads in videos. Lightest extension. Video in screenshot is just used as sample.
擴展基本資訊
名稱 | FullTube |
ID | cdhpfhpiblfbollfifbiakhmhfkmmbei |
官方網址 | https://chromewebstore.google.com/detail/fulltube/cdhpfhpiblfbollfifbiakhmhfkmmbei |
簡介 | This a extension to maximize the youtube player size. |
檔案大小 | 6.46 KB |
安裝次數 | 13 |
目前版本 | 1.9 |
更新時間 | 2019-04-18 |
上架時間 | 2019-04-18 |
開發者 | https://bijinapps.blogspot.com |
付費類型 | free |
擴展官網 | http://www.bijinapps.blogspot.in |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FullTube", "version": "1.9", "description": "This a extension to maximize the youtube player size.", "icons": { "48": "icons\/youtube.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch?v=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&t=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_t.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?time_continue=*&v=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_tc.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_pt.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&**" ], "js": [ "fulltube_pt.js" ], "run_at": "document_start" } ] } |