Full Screen Video for Youtube and more

A plugin for making video player full screen size in YouTube, Vimeo, Dailymotion and some more video sites.

Τι είναι το Full Screen Video for Youtube and more;

Το Full Screen Video for Youtube and more είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 010pixel, και η κύρια λειτουργία του είναι "A plugin for making video player full screen size in YouTube, Vimeo, Dailymotion and some more video sites.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Full Screen Video for Youtube and more

Λήψη αρχείων επέκτασης Full Screen Video for Youtube and more σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Simple plugin for maximizing video player to full window size for YouTube, Vimeo, Dailymotion and more to come.

Support this extension: https://donorbox.org/to-sustain-building-google-chrome-extensions

Supported Sites:
===========
- YouTube
- Vimeo
- Dailymotion

Features:
========
- Esc to go back to normal screen
- Check on every page load and make the video player full screen only if needed (add the class only if it's video page)

Change Log:
===========
Version:1.0.0 (2018/06/08)
--------------------------------------
- Initial upload

Version:1.1.0 (2018/06/12)
--------------------------------------
## Fixed
- Youtube home page unable to scroll
- Turn on youtube video when clicked from home page

## Added
- Press ESC key to switch off full screen mode

Version:1.2.0 (2018/08/13)
--------------------------------------
## Added
- added code to support latest youtube changes since July2018

Version:1.2.1 (2018/08/13)
--------------------------------------
## Fixed
- bug of click trigger not resizing video

Version:1.3.0 (2018/08/13)
--------------------------------------
## Added
- initiate extension functionality without refreshing youtube/vimeo/dailymotion page after installing extension

Version:1.3.1 (2018/08/16)
--------------------------------------
## Fixed
- youtube fullscreen css

Version:1.3.2 (2018/08/18)
--------------------------------------
## Fixed
- youtube fullscreen style                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Full Screen Video for Youtube and more Full Screen Video for Youtube and more
ID gbmnhnmodfphgecokgbppdeepkodjglg
Επίσημο URL https://chromewebstore.google.com/detail/full-screen-video-for-you/gbmnhnmodfphgecokgbppdeepkodjglg
Περιγραφή A plugin for making video player full screen size in YouTube, Vimeo, Dailymotion and some more video sites.
Μέγεθος Αρχείου 50.39 KB
Αριθμός Εγκαταστάσεων 1,051
Τρέχουσα Έκδοση 1.3.2
Τελευταία Ενημέρωση 2018-08-19
Ημερομηνία Δημοσίευσης 2018-08-18
Αξιολόγηση 4.09/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής 010pixel
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://privacy.010pixel.com/chrome
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Full Screen Video for Youtube and more",
    "short_name": "full-screen-video-youtube-and-more",
    "description": "A plugin for making video player full screen size in YouTube, Vimeo, Dailymotion and some more video sites.",
    "version": "1.3.2",
    "author": "010 Pixel",
    "permissions": [
        "*:\/\/youtube.com\/*",
        "*:\/\/www.youtube.com\/*",
        "*:\/\/vimeo.com\/*",
        "*:\/\/www.vimeo.com\/*",
        "*:\/\/dailymotion.com\/*",
        "*:\/\/www.dailymotion.com\/*",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "images\/icon16.png"
    },
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/loadscript.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "css\/styles.min.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/youtube.com\/*",
                "*:\/\/www.vimeo.com\/*",
                "*:\/\/vimeo.com\/*",
                "*:\/\/dailymotion.com\/*",
                "*:\/\/www.dailymotion.com\/*"
            ],
            "js": [
                "js\/myapp.js"
            ],
            "run_at": "document_end"
        }
    ]
}