Navigation Injection

Injects navigation buttons to every web page

What is Navigation Injection?

Navigation Injection is a Chrome extension developed by Jiri Wild, and its main feature is "Injects navigation buttons to every web page".

Extension Screenshots

screenshot

Download Navigation Injection Extension CRX File

Download Navigation Injection extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Navigation Injection Navigation Injection
ID nglcjanlliblnjhgdchmmloifiaoikag
Official URL https://chromewebstore.google.com/detail/navigation-injection/nglcjanlliblnjhgdchmmloifiaoikag
Description Injects navigation buttons to every web page
File Size 53.34 KB
Installation Count 84
Current Version 2
Last Updated 2015-08-31
Publish Date 2015-08-31
Developer Jiri Wild
Payment Type free
Supported Languages 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"
}