Thexnin Media Controller
Extension for Controlling Webmedia.
What is Thexnin Media Controller?
Thexnin Media Controller is a Chrome extension developed by thexnin, and its main feature is "Extension for Controlling Webmedia.".
Extension Screenshots
Download Thexnin Media Controller Extension CRX File
Download Thexnin Media Controller extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
- Control music playing on any tab all in one place. - Automatically resume/pause currently playing media when you switch tabs. Supported websites: • YouTube • SoundCloud
Extension Basic Information
Name | Thexnin Media Controller |
ID | nnkpghdbafelcpgcioacemmplkioloab |
Official URL | https://chromewebstore.google.com/detail/thexnin-media-controller/nnkpghdbafelcpgcioacemmplkioloab |
Description | Extension for Controlling Webmedia. |
File Size | 93.71 KB |
Installation Count | 10 |
Current Version | 2.0 |
Last Updated | 2022-01-02 |
Publish Date | 2019-12-13 |
Developer | thexnin |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |