Fake Navigator

Overwrite navigator

What is Fake Navigator?

Fake Navigator is a Chrome extension developed by monpoco, and its main feature is "Overwrite navigator".

Extension Screenshots

screenshot

Download Fake Navigator Extension CRX File

Download Fake Navigator 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

                        開発確認用です。
Device tools bar からスマートフォン用に変更した際に
UserAgentにあわせたnavigator.platformに書き換えるTOOL                    

Extension Basic Information

Name Fake Navigator Fake Navigator
ID ckcjbalmdhnljpnckbplelepkcfjpalb
Official URL https://chromewebstore.google.com/detail/fake-navigator/ckcjbalmdhnljpnckbplelepkcfjpalb
Description Overwrite navigator
File Size 14.21 KB
Installation Count 147
Current Version 1.2
Last Updated 2020-01-17
Publish Date 2020-01-14
Rating 5.00/5 Total 2 Ratings
Developer monpoco
Payment Type free
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fake Navigator",
    "version": "1.2",
    "description": "Overwrite navigator",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "main.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "web_accessible_resources": [
        "ow.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "*:\/\/*"
    ]
}