Rio: OpenAI ChatGPT Powered Digital Assistant

Rio: OpenAI ChatGPT Powered Digital Assistant

Meet Rio: AI Writer and Assistant. Supports Search Engines/Emails/Social Media/YouTube Summary and more powered by Open-AI Chat-GPT.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.7.0",
  "name": "__MSG_extNameFull__",
  "short_name": "__MSG_extName__",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "author": "Oziku Technologies LLC",
  "icons": {
    "16": "res/icons/logo/logo_16.png",
    "32": "res/icons/logo/logo_32.png",
    "48": "res/icons/logo/logo_48.png",
    "128": "res/icons/logo/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/libs/tippy.css",
        "css/contentStyle.css"
      ],
      "js": [
        "js/libs/popper.min.js",
        "js/libs/jquery.min.js",
        "js/libs/jquery.ba-throttle-debounce.min.js",
        "js/libs/tippy-bundle.umd.min.js",
        "js/libs/uuidv4.min.js",
        "js/libs/arrive.min.js",
        "js/speaker.js",
        "js/config.js",
        "js/utils.js",
        "js/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "exclude_matches": [
        "https://mail.google.com/*",
        "https://*.bing.com/*",
        "https://*.outlook.live.com/*"
      ]
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "css": [
        "css/libs/tippy.css",
        "css/contentStyle.css"
      ],
      "js": [
        "js/libs/popper.min.js",
        "js/libs/jquery.min.js",
        "js/libs/jquery.ba-throttle-debounce.min.js",
        "js/libs/tippy-bundle.umd.min.js",
        "js/libs/uuidv4.min.js",
        "js/libs/arrive.min.js",
        "js/libs/gmail.min.js",
        "js/speaker.js",
        "js/config.js",
        "js/utils.js",
        "js/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "commands": {
    "quiz": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "mac": "MacCtrl+Shift+C"
      },
      "description": "__MSG_commands_quiz__"
    },
    "explain": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "MacCtrl+Shift+E"
      },
      "description": "__MSG_commands_explain__"
    },
    "paraphrase": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "MacCtrl+Shift+P"
      },
      "description": "__MSG_commands_paraphrase__"
    },
    "summarize": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "MacCtrl+Shift+S"
      },
      "description": "__MSG_commands_summarize__"
    }
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "res/icons/logo/logo_16.png",
      "32": "res/icons/logo/logo_32.png",
      "48": "res/icons/logo/logo_48.png",
      "128": "res/icons/logo/logo_128.png"
    }
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "res/icons/logo/*.png",
        "res/icons/ui/*.png",
        "html/chat.html",
        "res/env/config.json"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}