Reverso Translation Saver

Reverso Translation Saver

Save translations on Reverso context and copy them to the clipboard.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Reverso Translation Saver",
  "version": "1.2",
  "description": "Save translations on Reverso context and copy them to the clipboard.",
  "permissions": [
    "clipboardWrite",
    "storage"
  ],
  "icons": {
    "16": "icons/icon54.png",
    "48": "icons/icon54.png",
    "128": "icons/icon54.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://context.reverso.net/*"
      ],
      "js": [
        "lib/colors.js",
        "lib/reverso_context/styles.js",
        "lib/reverso_context/utils.js",
        "lib/reverso_context/translation_table.js",
        "lib/reverso_context/translation_highlight.js",
        "lib/reverso_context/translation_actions.js",
        "content.js"
      ]
    }
  ]
}