ChromeControl (alpha)

Control Google Chrome with your Mobile Device

Was ist ChromeControl (alpha)?

ChromeControl (alpha) ist eine Chrome-Erweiterung, die von kyle.jacob.butler entwickelt wurde, und ihr Hauptmerkmal ist "Control Google Chrome with your Mobile Device".

Erweiterungsscreenshots

screenshot

ChromeControl (alpha)-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChromeControl (alpha)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name ChromeControl (alpha) ChromeControl (alpha)
ID plomplfbckniilajakjdeboeadcajkof
Offizielle URL https://chrome.google.com/webstore/detail/chromecontrol-alpha/plomplfbckniilajakjdeboeadcajkof
Beschreibung Control Google Chrome with your Mobile Device
Dateigröße 394 KB
Installationsanzahl 405
Aktuelle Version 0.1.2
Letztes Update 2016-03-09
Veröffentlichungsdatum 2016-03-09
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler kyle.jacob.butler
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite http://taoshumradio.com/kbapps/privacypolicy.html
Unterstützte Sprachen 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"
        }
    ]
}