Navigation Injection

Injects navigation buttons to every web page

Cos'è Navigation Injection?

Navigation Injection è un'estensione di Chrome sviluppata da Jiri Wild, e la sua funzione principale è "Injects navigation buttons to every web page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Navigation Injection

Scarica i file di estensione Navigation Injection in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        On every web page shows a back button and a home button - useful for full-screen mode or kiosk mode.                    

Informazioni di Base sull'Estensione

Nome Navigation Injection Navigation Injection
ID nglcjanlliblnjhgdchmmloifiaoikag
URL Ufficiale https://chromewebstore.google.com/detail/navigation-injection/nglcjanlliblnjhgdchmmloifiaoikag
Descrizione Injects navigation buttons to every web page
Dimensione del File 53.34 KB
Conteggio Installazioni 84
Versione Corrente 2
Ultimo Aggiornamento 2015-08-31
Data di Pubblicazione 2015-08-31
Sviluppatore Jiri Wild
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Navigation Injection",
    "description": "Injects navigation buttons to every web page",
    "version": "2",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "index.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "storage"
    ],
    "web_accessible_resources": [
        "home.png",
        "back.png"
    ],
    "options_page": "options.html"
}