Thexnin Media Controller
Extension for Controlling Webmedia.
Wat is Thexnin Media Controller?
Thexnin Media Controller is een Chrome-extensie ontwikkeld door thexnin, en de belangrijkste functie is "Extension for Controlling Webmedia.".
Extensie Screenshots
Download het CRX-bestand van de extensie Thexnin Media Controller
Download Thexnin Media Controller-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
- Control music playing on any tab all in one place. - Automatically resume/pause currently playing media when you switch tabs. Supported websites: • YouTube • SoundCloud
Basisinformatie over de Extensie
Naam | Thexnin Media Controller |
ID | nnkpghdbafelcpgcioacemmplkioloab |
Officiële URL | https://chromewebstore.google.com/detail/thexnin-media-controller/nnkpghdbafelcpgcioacemmplkioloab |
Beschrijving | Extension for Controlling Webmedia. |
Bestandsgrootte | 93.71 KB |
Aantal Installaties | 10 |
Huidige Versie | 2.0 |
Laatst Bijgewerkt | 2022-01-02 |
Publicatiedatum | 2019-12-13 |
Ontwikkelaar | thexnin |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Thexnin Media Controller", "short_name": "thexnin_mc", "version": "2.0", "description": "Extension for Controlling Webmedia.", "background": { "persistent": true, "scripts": [ "background.js" ] }, "icons": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "run_at": "document_start", "js": [ "content_for_youtube.js" ] }, { "matches": [ "*:\/\/*.soundcloud.com\/*" ], "run_at": "document_start", "js": [ "content_for_soundcloud.js" ] } ], "browser_action": { "default_popup": "index.html" }, "permissions": [ "tabs", "notifications" ], "content_security_policy": "script-src 'self' 'unsafe-inline'; object-src 'self'", "manifest_version": 2 } |