YTPlayer

Youtube Player

Qu'est-ce que YTPlayer ?

YTPlayer est une extension Chrome développée par fdal omar, et sa fonction principale est "Youtube Player".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YTPlayer

Téléchargez les fichiers d'extension YTPlayer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        YTPlayer helps you control all of your opened Youtube videos either using keyboard shortcuts or directly using its popup window.

The player has audio controls + focus button which focus on a tab, skip button which skip the ad if any, and a button to show suggested youtube videos (exclamation mark icon).                    

Informations de Base sur l'Extension

Nom YTPlayer YTPlayer
ID pakpfpcgppmjfecdmicncjoihpeledem
URL Officiel https://chromewebstore.google.com/detail/ytplayer/pakpfpcgppmjfecdmicncjoihpeledem
Description Youtube Player
Taille du Fichier 112 KB
Nombre d'Installations 1,397
Version Actuelle 1.1
Dernière Mise à Jour 2020-10-04
Date de Publication 2020-08-30
Évaluation 4.00/5 Total 1 Évaluations
Développeur fdal omar
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTPlayer",
    "description": "Youtube Player",
    "version": "1.1",
    "options_page": "pages\/options\/opts.html",
    "browser_action": {
        "default_icon": "assets\/icons\/128.png",
        "default_popup": "pages\/popup\/popup.html",
        "default_title": "YTPlayer"
    },
    "commands": {
        "Play": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y"
            },
            "description": "Play the video",
            "global": true
        },
        "Next": {
            "suggested_key": {
                "windows": "Ctrl+Shift+F"
            },
            "description": "Next video",
            "global": true
        },
        "Reload": {
            "suggested_key": {
                "windows": "Ctrl+Shift+E"
            },
            "description": "Load\/Reload video",
            "global": true
        },
        "Skip": {
            "suggested_key": {
                "windows": "Ctrl+Shift+K"
            },
            "description": "Skip Ad",
            "global": true
        }
    },
    "icons": {
        "16": "assets\/icons\/16.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "pages\/cs\/cs.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/www.youtube.com\/watch*",
        "notifications"
    ],
    "background": {
        "scripts": [
            "pages\/bg\/background.js"
        ],
        "persistent": false
    }
}