nerdNinja

Your Personal AI Problem Solver

What is nerdNinja?

nerdNinja is a Chrome extension developed by nerdninja-team, and its main feature is "Your Personal AI Problem Solver".

Extension Screenshots

screenshot
screenshot

Download nerdNinja Extension CRX File

Download nerdNinja 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

                        nerdNinja is an AI-powered extension that helps students double check their answers to the ones provided by AI (*not for use on tests or exams*)                    

Extension Basic Information

Name nerdNinja nerdNinja
ID ndomankjolllpbijlfdgngibidghflln
Official URL https://chromewebstore.google.com/detail/nerdninja/ndomankjolllpbijlfdgngibidghflln
Description Your Personal AI Problem Solver
File Size 1.13 MB
Installation Count 589
Current Version 0.1.7
Last Updated 2024-03-03
Publish Date 2023-08-16
Rating 4.47/5 Total 15 Ratings
Developer nerdninja-team
Email [email protected]
Payment Type free
Extension Website https://www.nerdninja.io/dashboard
Help Page URL https://www.nerdninja.io/contact
Privacy Policy Page URL https://www.nerdninja.io/policy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "nerdNinja",
    "description": "Your Personal AI Problem Solver",
    "version": "0.1.7",
    "icons": {
        "16": "images\/logo_icon.png",
        "48": "images\/logo_icon.png",
        "64": "images\/logo_icon.png",
        "128": "images\/logo_icon.png"
    },
    "action": {
        "default_title": "nerdNinja",
        "default_popup": "html\/account_page.html"
    },
    "permissions": [
        "storage",
        "webRequest",
        "cookies",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/canvas.instructure.com\/*",
        "https:\/\/trial.blackboard.com\/*",
        "https:\/\/www.nerdninja.io\/*"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "libs\/jquery-3.1.1.min.js",
                "libs\/tesseract.min.js",
                "js\/consts.js",
                "content.js"
            ],
            "css": [
                "css\/font-awesome.min.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*",
                "js\/*",
                "images\/*",
                "libs\/*",
                "html\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}