Video Player

This browser extension provides simple ways to open any YouTube video or playlist (including videos and playlists embedded in other…

Τι είναι το Video Player;

Το Video Player είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lenonm955, και η κύρια λειτουργία του είναι "This browser extension provides simple ways to open any YouTube video or playlist (including videos and playlists embedded in other…".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Video Player

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

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

                        This browser extension provides simple ways to open any YouTube video or playlist (including videos and playlists embedded in other sites/pages) in a configurable "popout" window that can be freely sized and/or positioned.

With Video Player you also have the option to open your video or your playlist in a new tab, with only one simple click on the extensions bar. 
If you decide to open it as a "popout" window, you can easily match and resize the sizes of the popping window as you wish. 

This extension allows you to fit it's settings to your own preference - just click on the extension's icon and adjust the settings.

Please let us know about your experience with our extension, or leave us a comment.
Contact us: [email protected]

For more information please visit our site: https://videoplayer.network/                    

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

Όνομα Video Player Video Player
ID bgolclgcmibkmhenihmfgpbfijfaeenl
Επίσημο URL https://chrome.google.com/webstore/detail/video-player/bgolclgcmibkmhenihmfgpbfijfaeenl
Περιγραφή This browser extension provides simple ways to open any YouTube video or playlist (including videos and playlists embedded in other…
Μέγεθος Αρχείου 895 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 1.0.0.18
Τελευταία Ενημέρωση 2022-05-18
Ημερομηνία Δημοσίευσης 2022-05-18
Προγραμματιστής lenonm955
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://videoplayer.network/
Διεύθυνση URL της Σελίδας Βοήθειας https://videoplayer.network/#section-features
URL της Σελίδας Πολιτικής Απορρήτου https://videoplayer.network
Υποστηριζόμενες Γλώσσες en,zh-CN,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Player",
    "short_name": "videoplayer",
    "description": "",
    "manifest_version": 3,
    "version": "1.0.0.18",
    "default_locale": "en",
    "author": "Sergey",
    "icons": {
        "16": "img\/16.png",
        "19": "img\/19.png",
        "24": "img\/24.png",
        "32": "img\/32.png",
        "38": "img\/38.png",
        "48": "img\/48.png",
        "64": "img\/64.png",
        "96": "img\/96.png",
        "128": "img\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "img\/16.png",
            "19": "img\/19.png",
            "24": "img\/24.png",
            "32": "img\/32.png",
            "38": "img\/38.png",
            "48": "img\/48.png",
            "64": "img\/64.png",
            "96": "img\/96.png",
            "128": "img\/128.png"
        },
        "default_title": "__MSG_BrowserActionTitle__"
    },
    "commands": {
        "open-popout-auto-close-command": {
            "suggested_key": {
                "default": "Ctrl+Up"
            },
            "description": "__MSG_OpenPopoutCommandDescription__"
        },
        "open-popout-force-close-command": {
            "suggested_key": {
                "default": "Alt+Shift+PageUp"
            },
            "description": "__MSG_OpenPopoutForceCloseCommandDescription__"
        },
        "open-popout-no-close-command": {
            "suggested_key": {
                "default": "Alt+Shift+PageDown"
            },
            "description": "__MSG_OpenPopoutNoCloseCommandDescription__"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "index.html",
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "static\/rules.json"
            }
        ]
    },
    "permissions": [
        "contextMenus",
        "notifications",
        "storage",
        "tabs",
        "alarms",
        "declarativeNetRequest",
        "declarativeNetRequestFeedback"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.youtube-nocookie.com\/*"
    ]
}