ChromeControl (alpha)

Control Google Chrome with your Mobile Device

Co je ChromeControl (alpha)?

ChromeControl (alpha) je rozšíření Chrome vyvinuté kyle.jacob.butler, a jeho hlavní funkcí je „Control Google Chrome with your Mobile Device“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření ChromeControl (alpha)

Stáhněte si soubory rozšíření ChromeControl (alpha) ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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***                    

Základní Informace o Rozšíření

Název ChromeControl (alpha) ChromeControl (alpha)
ID plomplfbckniilajakjdeboeadcajkof
Oficiální URL https://chrome.google.com/webstore/detail/chromecontrol-alpha/plomplfbckniilajakjdeboeadcajkof
Popis Control Google Chrome with your Mobile Device
Velikost souboru 394 KB
Počet instalací 405
Aktuální Verze 0.1.2
Poslední Aktualizace 2016-03-09
Datum Vydání 2016-03-09
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář kyle.jacob.butler
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí http://taoshumradio.com/kbapps/privacypolicy.html
Podporované Jazyky 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"
        }
    ]
}