QuraAi

QuraAi

Qura.ai is designed to enhance your X (Twitter) experience with AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "QuraAi",
  "description": "Qura.ai is designed to enhance your X (Twitter) experience with AI.",
  "version": "6.0.0",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "options_ui": {
    "page": "src/browser-extension/options/index.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "src/browser-extension/popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "https://*.twitter.com/*",
        "http://*.twitter.com/*",
        "https://*.x.com/*",
        "http://*.x.com/*"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "js": [
        "src/browser-extension/content_script/index.js"
      ]
    }
  ],
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "webRequest"
  ],
  "commands": {
    "open-popup": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Open the popup"
    }
  },
  "host_permissions": [
    "https://*.twitter.com/*",
    "http://*.twitter.com/*",
    "https://*.x.com/*",
    "http://*.x.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/src/browser-extension/content_script/index-53b85c5b.js",
        "assets/skeleton-f43f1719.js",
        "assets/browser-polyfill-098276e6.js",
        "assets/electron-917d39d0.js",
        "assets/tauri-d0b70574.js",
        "assets/userscript-843e221b.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "https://*.twitter.com/*",
        "http://*.twitter.com/*",
        "https://*.x.com/*",
        "http://*.x.com/*"
      ],
      "use_dynamic_url": true
    }
  ]
}