Navigation Injection

Injects navigation buttons to every web page

Hvad er Navigation Injection?

Navigation Injection er en Chrome-udvidelse udviklet af Jiri Wild, og dens hovedfunktion er "Injects navigation buttons to every web page".

Udvidelsesskærmbilleder

screenshot

Download Navigation Injection-udvidelses-CRX-fil

Download Navigation Injection-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Navigation Injection Navigation Injection
ID nglcjanlliblnjhgdchmmloifiaoikag
Officiel URL https://chromewebstore.google.com/detail/navigation-injection/nglcjanlliblnjhgdchmmloifiaoikag
Beskrivelse Injects navigation buttons to every web page
Filstørrelse 53.34 KB
Antal Installationer 84
Nuværende Version 2
Senest Opdateret 2015-08-31
Udgivelsesdato 2015-08-31
Udvikler Jiri Wild
Betalingsmetode free
Understøttede Sprog 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"
}