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 |
官方URL | 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" } ] } |