RAx Web Importer

RAx Web Importer

RAx - Your AI research companion

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RAx Web Importer",
  "description": " RAx - Your AI research companion",
  "version": "3.3.0",
  "manifest_version": 2,
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "57": "icons/57x57.png",
    "60": "icons/60x60.png",
    "72": "icons/72x72.png",
    "96": "icons/96x96.png",
    "114": "icons/114x114.png",
    "144": "icons/144x144.png",
    "152": "icons/152x152.png",
    "180": "icons/180x180.png",
    "192": "icons/192x192.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_title": "RAx web-importer",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+X",
        "mac": "Command+Shift+X",
        "chromeos": "Ctrl+Shift+X",
        "linux": "Ctrl+Shift+X"
      }
    }
  }
}