Get Webpage from Computer to Mobile

Open website from computer to mobile

Co to jest Get Webpage from Computer to Mobile?

Get Webpage from Computer to Mobile to rozszerzenie Chrome opracowane przez ClearApps, a jego główną funkcją jest „Open website from computer to mobile”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Get Webpage from Computer to Mobile

Pobierz pliki rozszerzeń Get Webpage from Computer to Mobile w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                                            

Podstawowe informacje o rozszerzeniu

Nazwa Get Webpage from Computer to Mobile Get Webpage from Computer to Mobile
ID jhoboflmglplkodmfmohodbeajgfiopl
Oficjalny URL https://chrome.google.com/webstore/detail/get-webpage-from-computer/jhoboflmglplkodmfmohodbeajgfiopl
Opis Open website from computer to mobile
Rozmiar pliku 132 KB
Liczba instalacji 147
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2018-08-10
Data Publikacji 2018-08-10
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper ClearApps
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}