iQare Fullscreen Site Navigation

iQare Fullscreen Site Navigation is a extension that lets to navigate in the easy and quick way a fullscreen website.

Co to jest iQare Fullscreen Site Navigation?

iQare Fullscreen Site Navigation to rozszerzenie Chrome opracowane przez https://iqare.eu, a jego główną funkcją jest „iQare Fullscreen Site Navigation is a extension that lets to navigate in the easy and quick way a fullscreen website.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia iQare Fullscreen Site Navigation

Pobierz pliki rozszerzeń iQare Fullscreen Site Navigation 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

                        This extension give you possibility to navigate in browser history without exiting of full screen mode using next, back and home buttons of toolbar.
Navigation toolbar will be visible only if chrome browser is open on full screen [F11].                    

Podstawowe informacje o rozszerzeniu

Nazwa iQare Fullscreen Site Navigation iQare Fullscreen Site Navigation
ID oapiakkhifnfgcpkkoioenolcblkigfo
Oficjalny URL https://chromewebstore.google.com/detail/iqare-fullscreen-site-nav/oapiakkhifnfgcpkkoioenolcblkigfo
Opis iQare Fullscreen Site Navigation is a extension that lets to navigate in the easy and quick way a fullscreen website.
Rozmiar pliku 108 KB
Liczba instalacji 30
Aktualna Wersja 7.0.7
Ostatnia Aktualizacja 2024-02-24
Data Publikacji 2018-09-27
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper https://iqare.eu
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.carebuilder.com/
Adres URL Strony Pomocy https://www.carebuilder.com/contact
Adres URL Strony Polityki Prywatności http://carebuilder.eu/privacy-policy.html
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "iQare Fullscreen Site Navigation",
    "version": "7.0.7",
    "description": "iQare Fullscreen Site Navigation is a extension that lets to navigate in the easy and quick way a fullscreen website.",
    "offline_enabled": true,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "idle",
        "webRequestAuthProvider",
        "webRequest",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "icon16x16.png",
        "48": "icon48x48.png",
        "128": "icon128x128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/btn_back.png"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "images\/btn_next.png"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "images\/btn_home.png"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "images\/btn_move.png"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "images\/btn_keys.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "contentscript.css"
            ],
            "js": [
                "jquery.js",
                "jquery-ui.js",
                "jquery.ui.touch-punch.min.js",
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ]
}