Stick.ly - translate & learn

Stick.ly - translate & learn

Understand foreign websites with contextual translations. Remember every word with spaced repetition learning.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Alexander Oemisch",
  "version": "0.9.995",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "minimum_chrome_version": "93",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "homepage_url": "https://stick.ly",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/webcomponents-bundle.js",
        "content.js"
      ],
      "css": [
        "style/style.css"
      ]
    }
  ],
  "action": {
    "default_title": "Stick.ly Translator",
    "default_popup": "views/default.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/[email protected]",
        "images/[email protected]",
        "images/close.png",
        "images/info.svg",
        "images/caret.svg",
        "images/icon.png",
        "images/caret-up.svg",
        "images/bloom-logo-outline.png",
        "images/emoji-rocket.png",
        "images/stores/Appstore.png",
        "images/stores/Playstore.png",
        "images/tts.png",
        "images/tts-black.png",
        "fonts/nunito/Nunito-Regular.ttf",
        "fonts/nunito/Nunito-Medium.ttf",
        "fonts/nunito/Nunito-SemiBold.ttf",
        "fonts/nunito/Nunito-Bold.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.stick.ly/*",
      "*://stick.ly/*"
    ]
  },
  "background": {
    "service_worker": "global.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "*://*/*"
  ],
  "optional_host_permissions": [],
  "icons": {
    "16": "icons/loggedin.png",
    "48": "icons/[email protected]",
    "128": "icons/[email protected]"
  }
}