Arvin: 1-click to Use AI Copilot Anywhere

Arvin: 1-click to Use AI Copilot Anywhere

Arvin ChatGPT extension that can be used on any website. With AI writer for Email, Twitter & LinkedIn and Blog & Youtube summarizer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "2.10.0",
  "default_locale": "en",
  "description": "__MSG_description__",
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "./assets/icon-512.png",
    "48": "./assets/icon-512.png",
    "128": "./assets/icon-512.png"
  },
  "homepage_url": "https://arvin.chat",
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": "./assets/icon-512.png",
    "default_title": "Arvin"
  },
  "background": {
    "service_worker": "background.mjs"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      }
    },
    "toggle-popup": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      },
      "description": "Open the Arvin"
    }
  },
  "side_panel": {
    "default_path": "dist/tabs/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/js/katex.min.js",
        "dist/contentScripts/index.global.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.google.com/*",
        "https://www.google.com.hk/*",
        "https://www.google.com.tw/*",
        "https://search.yahoo.com/*",
        "https://*.search.yahoo.com/*",
        "https://search.yahoo.co.jp/*",
        "https://www.baidu.com/*",
        "https://entry.baidu.com/*",
        "https://www.bing.com/*",
        "https://cn.bing.com/*",
        "https://global.bing.com/*",
        "https://search.naver.com/*",
        "https://www.ask.com/*",
        "https://yandex.com/*",
        "https://duckduckgo.com/*",
        "https://www.ecosia.org/*"
      ],
      "js": [
        "dist/searchBox/contentScript.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "dist/gmail/contentScript.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://twitter.com/*",
        "https://www.linkedin.com/*"
      ],
      "js": [
        "dist/generate/contentScript.js"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://www.youtube.com/watch*"
      ],
      "js": [
        "dist/youtubeSummary/contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "images/*",
        "dist/contentScripts/style.css",
        "dist/webSummary/style.css",
        "dist/tabs/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "dist/searchBox/style.css"
      ],
      "matches": [
        "https://www.google.com/*",
        "https://www.google.com.hk/*",
        "https://www.google.com.tw/*",
        "https://search.yahoo.com/*",
        "https://*.search.yahoo.com/*",
        "https://search.yahoo.co.jp/*",
        "https://www.baidu.com/*",
        "https://entry.baidu.com/*",
        "https://www.bing.com/*",
        "https://cn.bing.com/*",
        "https://global.bing.com/*",
        "https://search.naver.com/*",
        "https://www.ask.com/*",
        "https://yandex.com/*",
        "https://duckduckgo.com/*",
        "https://www.ecosia.org/*"
      ]
    },
    {
      "resources": [
        "dist/gmail/style.css"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    },
    {
      "resources": [
        "dist/generate/style.css"
      ],
      "matches": [
        "https://twitter.com/*",
        "https://www.linkedin.com/*"
      ]
    },
    {
      "resources": [
        "dist/youtubeSummary/style.css"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}