ChromeControl (alpha)

Control Google Chrome with your Mobile Device

Что такое ChromeControl (alpha)?

ChromeControl (alpha) - это расширение Chrome, разработанное kyle.jacob.butler, и его основная функция - "Control Google Chrome with your Mobile Device".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения ChromeControl (alpha)

Скачайте файлы расширений 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
Электронная почта [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"
        }
    ]
}