Remote

Remote for your favorite player.

Remoteとは何ですか?

Remoteはremote-potatoによって開発されたChromeの拡張機能で、その主な機能は「Remote for your favorite player.」です。

拡張機能のスクリーンショット

screenshot

Remote拡張機能のCRXファイルをダウンロード

Remote拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Remote as the name entails, is a remote, but for your browser 🎉

Nowadays, most of the content is available through the browser. 
However your browser is not always accessible straight from your TV, so you end up displaying your computer's screen on your TV.

Remote is the missing controller for your browser, especially when you're showing video content on TV.                    

拡張機能の基本情報

名前 Remote Remote
ID hifbccioeoaheffkmedjiphppjpcbfeh
公式URL https://chrome.google.com/webstore/detail/remote/hifbccioeoaheffkmedjiphppjpcbfeh
説明 Remote for your favorite player.
ファイルサイズ 82.66 KB
インストール数 160
現在のバージョン 2.1.0
最終更新日 2017-11-04
公開日 2017-11-04
評価 5.00/5 合計 1 レビュー
開発者 remote-potato
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remote",
    "description": "Remote for your favorite player.",
    "version": "2.1.0",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "injected.js"
            ],
            "css": [
                "injected.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_title": "Remote for your favorite player.",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}