FullTube
This a extension to maximize the youtube player size.
Hvad er FullTube?
FullTube er en Chrome-udvidelse udviklet af https://bijinapps.blogspot.com, og dens hovedfunktion er "This a extension to maximize the youtube player size.".
Udvidelsesskærmbilleder
Download FullTube-udvidelses-CRX-fil
Download FullTube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension enlarge the YouTube player to entire page. No ads in videos. Lightest extension. Video in screenshot is just used as sample.
Grundlæggende oplysninger om udvidelsen
Navn | FullTube |
ID | cdhpfhpiblfbollfifbiakhmhfkmmbei |
Officiel URL | https://chromewebstore.google.com/detail/fulltube/cdhpfhpiblfbollfifbiakhmhfkmmbei |
Beskrivelse | This a extension to maximize the youtube player size. |
Filstørrelse | 6.46 KB |
Antal Installationer | 13 |
Nuværende Version | 1.9 |
Senest Opdateret | 2019-04-18 |
Udgivelsesdato | 2019-04-18 |
Udvikler | https://bijinapps.blogspot.com |
Betalingsmetode | free |
Udvidelseswebsted | http://www.bijinapps.blogspot.in |
Understøttede Sprog | 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" } ] } |