ChromeControl (alpha)

Control Google Chrome with your Mobile Device

ChromeControl (alpha)とは何ですか?

ChromeControl (alpha)はkyle.jacob.butlerによって開発されたChromeの拡張機能で、その主な機能は「Control Google Chrome with your Mobile Device」です。

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

screenshot

ChromeControl (alpha)拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        ChromeControl is a remote control app for the chrome browser on your computer. 
This extension will be updated often in it's early stages of development. Be sure to reload/update it.

**New in 0.1.2: Added button on mobile app for lyrics on Youtube videos**

Open, close, and switch between tabs.
Manage bookmarks, history, and chrome settings.
Control popular websites from your mobile device.
Navigation buttons on each tab (back, forward, and reload)
Custom remote interface for YouTube, Pandora, Facebook, Google, Gmail, etc.


***Currently this project is being hosted for free, and It's allotted 18 hrs. a day uptime on the server. 
 If for whatever reason the connection drops, try disabling and re-enabling the extension.***

***This is the first public alpha release - there are a few bugs***                    

拡張機能の基本情報

名前 ChromeControl (alpha) ChromeControl (alpha)
ID plomplfbckniilajakjdeboeadcajkof
公式URL https://chrome.google.com/webstore/detail/chromecontrol-alpha/plomplfbckniilajakjdeboeadcajkof
説明 Control Google Chrome with your Mobile Device
ファイルサイズ 394 KB
インストール数 405
現在のバージョン 0.1.2
最終更新日 2016-03-09
公開日 2016-03-09
評価 5.00/5 合計 1 レビュー
開発者 kyle.jacob.butler
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL http://taoshumradio.com/kbapps/privacypolicy.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChromeControl (alpha)",
    "version": "0.1.2",
    "manifest_version": 2,
    "description": "Control Google Chrome with your Mobile Device",
    "permissions": [
        "tabs",
        "browsingData",
        "activeTab",
        "bookmarks",
        "history",
        "notifications",
        "storage",
        ""
    ],
    "web_accessible_resources": [
        "installed.js",
        "js\/lib\/jquery.qrcode.js",
        "js\/lib\/click.js",
        "js\/lib\/googleInjected.js",
        "js\/lib\/pandoraInjected.js"
    ],
    "icons": {
        "48": "images\/icon48.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/clients5.google.com https:\/\/chrome.google.com https:\/\/apis.google.com https:\/\/accounts.google.com https:\/\/platform.twitter.com https:\/\/ssl.google-analytics.com https:\/\/ajax.googleapis.com; frame-src 'self' https:\/\/clients5.google.com https:\/\/plusone.google.com https:\/\/www.facebook.com https:\/\/apis.google.com https:\/\/accounts.google.com https:\/\/platform.twitter.com; object-src 'self'",
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon48.png"
        },
        "default_title": "chromeControl",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/lib\/youtube.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.google.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/lib\/google.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.pandora.com\/*"
            ],
            "js": [
                "js\/lib\/pandora.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/lib\/facebook.js"
            ],
            "run_at": "document_end"
        }
    ]
}