Navigation Injection

Injects navigation buttons to every web page

Wat is Navigation Injection?

Navigation Injection is een Chrome-extensie ontwikkeld door Jiri Wild, en de belangrijkste functie is "Injects navigation buttons to every web page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Navigation Injection

Download Navigation Injection-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Navigation Injection Navigation Injection
ID nglcjanlliblnjhgdchmmloifiaoikag
Officiële URL https://chromewebstore.google.com/detail/navigation-injection/nglcjanlliblnjhgdchmmloifiaoikag
Beschrijving Injects navigation buttons to every web page
Bestandsgrootte 53.34 KB
Aantal Installaties 84
Huidige Versie 2
Laatst Bijgewerkt 2015-08-31
Publicatiedatum 2015-08-31
Ontwikkelaar Jiri Wild
Betalingswijze free
Ondersteunde Talen 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"
}