YouTubePlayer
Control YouTube videos across all tabs and windows from extension bar
Wat is YouTubePlayer?
YouTubePlayer is een Chrome-extensie ontwikkeld door Akshaya Kumar, en de belangrijkste functie is "Control YouTube videos across all tabs and windows from extension bar".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTubePlayer
Download YouTubePlayer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This Chrome extension allows to toggle youtube videos that are playing across tabs and windows from the extension. It can skip the ads that are skippable without any time wait.
Basisinformatie over de Extensie
Naam | YouTubePlayer |
ID | djfdkfcebbbehfmibkkhneofknamohoi |
Officiële URL | https://chromewebstore.google.com/detail/youtubeplayer/djfdkfcebbbehfmibkkhneofknamohoi |
Beschrijving | Control YouTube videos across all tabs and windows from extension bar |
Bestandsgrootte | 100 KB |
Aantal Installaties | 31 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2019-08-04 |
Publicatiedatum | 2019-08-03 |
Ontwikkelaar | Akshaya Kumar |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTubePlayer", "version": "1.0.0", "description": "Control YouTube videos across all tabs and windows from extension bar", "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |