Direction Correction

Direction Correction

השלמה ל-Google Translate, מתרגם את כיוון הטקסט בתרגום של דף אינטרנט שלם.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Direction Correction",
  "description": "השלמה ל-Google Translate, מתרגם את כיוון הטקסט בתרגום של דף אינטרנט שלם.",
  "version": "1.1",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*",
    "file:///*/*"
  ],
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "icons": {
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "page_action": {}
}