Chrome Remote Listener

Listens to remote commands and modifies tab.

什么是Chrome Remote Listener?

Chrome Remote Listener是由https://tnik.in开发的Chrome扩展程序,该扩展的主要功能是“Listens to remote commands and modifies tab.”。

扩展截图

screenshot

下载Chrome Remote Listener扩展crx文件

下载Chrome Remote Listener扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is a companion extension for Tab Remote - Bookmarks Manager, Tab Media Controller app.
When you click on the icon and click start listening, you will be able to control the video in the browser tab using the companion mobile app Tab Remote - Bookmarks Manager, Tab Media Controller.                    

扩展基本信息

名称 Chrome Remote Listener Chrome Remote Listener
ID mcljjejjbmndcneeiclbkhdeohmdidbd
官方URL https://chromewebstore.google.com/detail/chrome-remote-listener/mcljjejjbmndcneeiclbkhdeohmdidbd
简介 Listens to remote commands and modifies tab.
文件大小 101 KB
安装次数 21
当前版本 1.0.1
更新时间 2020-08-21
上架时间 2020-08-21
开发者 https://tnik.in
电子邮箱 [email protected]
付费类型 free
扩展官网 https://apps.tnik.in
隐私政策页面URL https://apps.tnik.in/2019/04/privacy-policy.html
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Remote Listener",
    "description": "Listens to remote commands and modifies tab.",
    "version": "1.0.1",
    "background": {
        "page": "bg\/background.html",
        "persistent": true
    },
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "32": "icons\/icon32.png",
        "16": "icons\/icon16.png"
    },
    "options_page": "options\/options.html",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content_script.js",
                "content\/jquery-3.5.1.min.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.firebase.com https:\/\/*.firebaseio.com https:\/\/www.gstatic.com; object-src 'self'",
    "manifest_version": 2
}