nerdNinja
Your Personal AI Problem Solver
什么是nerdNinja?
nerdNinja是由nerdninja-team开发的Chrome扩展程序,该扩展的主要功能是“Your Personal AI Problem Solver”。
扩展截图
下载nerdNinja扩展crx文件
下载nerdNinja扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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*) 扩展基本信息
| 名称 | |
| ID | ndomankjolllpbijlfdgngibidghflln |
| 官方URL | https://chromewebstore.google.com/detail/nerdninja/ndomankjolllpbijlfdgngibidghflln |
| 简介 | Your Personal AI Problem Solver |
| 文件大小 | 1.13 MB |
| 安装次数 | 589 |
| 当前版本 | 0.1.7 |
| 更新时间 | 2024-03-03 |
| 上架时间 | 2023-08-16 |
| 评分 | 4.47/5 共15次评分 |
| 开发者 | nerdninja-team |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.nerdninja.io/dashboard |
| 帮助页面URL | https://www.nerdninja.io/contact |
| 隐私政策页面URL | https://www.nerdninja.io/policy |
| 支持的语言 | 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": [
" | |