Get Webpage from Computer to Mobile

Open website from computer to mobile

Что такое Get Webpage from Computer to Mobile?

Get Webpage from Computer to Mobile - это расширение Chrome, разработанное ClearApps, и его основная функция - "Open website from computer to mobile".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Get Webpage from Computer to Mobile

Скачайте файлы расширений Get Webpage from Computer to Mobile в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                                            

Основная информация о расширении

Название Get Webpage from Computer to Mobile Get Webpage from Computer to Mobile
ID jhoboflmglplkodmfmohodbeajgfiopl
Официальный URL https://chrome.google.com/webstore/detail/get-webpage-from-computer/jhoboflmglplkodmfmohodbeajgfiopl
Описание Open website from computer to mobile
Размер файла 132 KB
Количество установок 147
Текущая Версия 1.1
Последнее Обновление 2018-08-10
Дата публикации 2018-08-10
Рейтинг 5.00/5 Всего 2 оценок
Разработчик ClearApps
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Get Webpage from Computer to Mobile",
    "version": "1.1",
    "description": "Open website from computer to mobile",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "browser_action": {
        "default_title": "Get the website On Mobile",
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}