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 |
| Eメール | [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": [
" | |