FullTube
This a extension to maximize the youtube player size.
What is FullTube?
FullTube is a Chrome extension developed by https://bijinapps.blogspot.com, and its main feature is "This a extension to maximize the youtube player size.".
Extension Screenshots
Download FullTube Extension CRX File
Download FullTube extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension enlarge the YouTube player to entire page. No ads in videos. Lightest extension. Video in screenshot is just used as sample.
Extension Basic Information
Name | FullTube |
ID | cdhpfhpiblfbollfifbiakhmhfkmmbei |
Official URL | https://chromewebstore.google.com/detail/fulltube/cdhpfhpiblfbollfifbiakhmhfkmmbei |
Description | This a extension to maximize the youtube player size. |
File Size | 6.46 KB |
Installation Count | 13 |
Current Version | 1.9 |
Last Updated | 2019-04-18 |
Publish Date | 2019-04-18 |
Developer | https://bijinapps.blogspot.com |
Payment Type | free |
Extension Website | http://www.bijinapps.blogspot.in |
Supported Languages | 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" } ] } |