Ask AI

Ask AI

Ask AI is an AI-powered Search Assistant, with Bing, ChatGPT, Bard, & more! ⚡

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ask AI",
  "short_name": "Ask AI",
  "version": "1.0.2",
  "description": "Ask AI is an AI-powered Search Assistant, with Bing, ChatGPT, Bard, & more! ⚡",
  "icons": {
    "32": "images/32.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "128": "images/128.png"
  },
  "homepage_url": "https://eurekaa.app",
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Bing",
      "keyword": "bing.com",
      "search_url": "https://eurekaa.app/search?FORM=VLTS01&PC=ATVL&PTAG=71729&q={searchTerms}",
      "instant_url": "https://eurekaa.app/search?FORM=VLTS01&PC=ATVL&PTAG=71729&q={searchTerms}",
      "favicon_url": "https://eurekaa.app/favicon_.ico",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "permissions": [
    "sidePanel",
    "unlimitedStorage",
    "storage",
    "background",
    "contextMenus",
    "declarativeNetRequest",
    "tabs"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1a",
        "enabled": true,
        "path": "rules/rule1a.json"
      },
      {
        "id": "ruleset_1b",
        "enabled": true,
        "path": "rules/rule1b.json"
      },
      {
        "id": "ruleset_2",
        "enabled": true,
        "path": "rules/rule2.json"
      },
      {
        "id": "ruleset_3",
        "enabled": true,
        "path": "rules/rule3.json"
      }
    ]
  },
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://bard.google.com/*"
      ],
      "js": [
        "js/bard.js"
      ],
      "css": [
        "styles/bard.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "js/chatgpt.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    },
    {
      "matches": [
        "*://*.bing.com/*"
      ],
      "css": [
        "styles/bing.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "css": [
        "styles/chatgpt.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://chat.openai.com/*",
        "*://bard.google.com/*"
      ],
      "js": [
        "js/a_fun.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    },
    {
      "matches": [
        "*://chat.openai.com/*",
        "*://bard.google.com/*"
      ],
      "js": [
        "js/unfocus.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/all.js"
      ],
      "css": [
        "styles/all.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "extension_ids": [
        "*"
      ]
    }
  ],
  "commands": {
    "open_promptbar": {
      "suggested_key": {
        "default": "Alt+A",
        "windows": "Alt+A",
        "mac": "Alt+A",
        "chromeos": "Alt+A",
        "linux": "Alt+A"
      },
      "description": "Press Alt + A to open the AI promptbar"
    },
    "open_searchbar": {
      "suggested_key": {
        "default": "Alt+S",
        "windows": "Alt+S",
        "mac": "Alt+S",
        "chromeos": "Alt+S",
        "linux": "Alt+S"
      },
      "description": "Press Alt + S to open the searchbar"
    },
    "open_chatgpt": {
      "suggested_key": {
        "default": "Alt+C",
        "windows": "Alt+C",
        "mac": "Alt+C",
        "chromeos": "Alt+C",
        "linux": "Alt+C"
      },
      "description": "Press Alt + C to open ChatGPT"
    },
    "open_bard": {
      "suggested_key": {
        "default": "Alt+B",
        "windows": "Alt+B",
        "mac": "Alt+B",
        "chromeos": "Alt+B",
        "linux": "Alt+B"
      },
      "description": "Press Alt + B to open Bard"
    }
  },
  "offline_enabled": true,
  "author": "Ask AI",
  "background": {
    "service_worker": "js/service.js"
  },
  "content_security_policy": {
    "extension_pages": "font-src 'self'; script-src 'self'; object-src 'self'; worker-src 'self'",
    "content_scripts": "font-src 'self'; script-src 'self'; object-src 'self'; worker-src 'self'"
  },
  "minimum_chrome_version": "114",
  "action": {
    "default_icon": {
      "32": "images/32.png",
      "48": "images/48.png",
      "64": "images/64.png",
      "128": "images/128.png"
    },
    "default_title": "Ask AI!"
  }
}