Examine source code of Yoru AI Translator

Inspect and view changes in Yoru AI Translator source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Yoru AI Translator",
  "version": "0.0.0.14",
  "description": "Translate selected or copied text using the Yoru Stories Translation API - Powered by Generative AI",
  "icons": {
    "16": "images/yoru-16.png",
    "48": "images/yoru-48.png",
    "128": "images/yoru-128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/purify.min.js",
        "scripts/utils.js",
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_popup": "html/popup.html"
  },
  "incognito": "spanning",
  "browser_specific_settings": {
    "gecko": {
      "id": "addon@yoru.world"
    }
  }
}