ChromeControl (alpha)

Control Google Chrome with your Mobile Device

Cos'è ChromeControl (alpha)?

ChromeControl (alpha) è un'estensione di Chrome sviluppata da kyle.jacob.butler, e la sua funzione principale è "Control Google Chrome with your Mobile Device".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChromeControl (alpha)

Scarica i file di estensione ChromeControl (alpha) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome ChromeControl (alpha) ChromeControl (alpha)
ID plomplfbckniilajakjdeboeadcajkof
URL Ufficiale https://chrome.google.com/webstore/detail/chromecontrol-alpha/plomplfbckniilajakjdeboeadcajkof
Descrizione Control Google Chrome with your Mobile Device
Dimensione del File 394 KB
Conteggio Installazioni 405
Versione Corrente 0.1.2
Ultimo Aggiornamento 2016-03-09
Data di Pubblicazione 2016-03-09
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore kyle.jacob.butler
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy http://taoshumradio.com/kbapps/privacypolicy.html
Lingue Supportate 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"
        }
    ]
}