Thexnin Media Controller
Extension for Controlling Webmedia.
什么是Thexnin Media Controller?
Thexnin Media Controller是由thexnin开发的Chrome扩展程序,该扩展的主要功能是“Extension for Controlling Webmedia.”。
扩展截图
下载Thexnin Media Controller扩展crx文件
下载Thexnin Media Controller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
- Control music playing on any tab all in one place. - Automatically resume/pause currently playing media when you switch tabs. Supported websites: • YouTube • SoundCloud
扩展基本信息
名称 | Thexnin Media Controller |
ID | nnkpghdbafelcpgcioacemmplkioloab |
官方URL | https://chromewebstore.google.com/detail/thexnin-media-controller/nnkpghdbafelcpgcioacemmplkioloab |
简介 | Extension for Controlling Webmedia. |
文件大小 | 93.71 KB |
安装次数 | 10 |
当前版本 | 2.0 |
更新时间 | 2022-01-02 |
上架时间 | 2019-12-13 |
开发者 | thexnin |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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 } |