English to Hebrew Translator

English to Hebrew Translator

A Chrome extension that translates selected text from English to Hebrew and saves it to your email account.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "English to Hebrew Translator",
  "version": "1.2",
  "manifest_version": 3,
  "description": "A Chrome extension that translates selected text from English to Hebrew and saves it to your email account.",
  "icons": {
    "16": "./clickLearnIcon.png",
    "48": "./clickLearnIcon.png",
    "128": "./clickLearnIcon.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "identity",
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./popup.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtnHo5USozgQrhYSyNA8vQimQ3s6gOjDCHLVqc4Wlf7WvVw+YJbTjNYnSKGMbt0m8S/yKgvwBOu4LtN9NvMoRd4UknbCIZ9aJxkV9Po91WN8DvOaSqENaveOxhScw4X1ZddWH9HiWPDPAm/QFPXEVS+zJ8rGvIwkHIO+J7UQIcHF/F1odsWSF5praYV2KD2+fKnLStQ0H6Jd4CifzAP0DBuet5vcCIyhjQqKxJmWdQrHgDC0udeFrbVLg4no99eUw12l5gMnp/nazQsuBtcbsKt32PUg6HBDhfoN5iY1BMAWW7Cs8T21zSygav1rjrsnvVQQcx8EWzaCxsCdC3jvtswIDAQAB",
  "oauth2": {
    "client_id": "5407130036-4a2bpl10o58hhn0s5skpd31s1n987khl.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/contacts.readonly"
    ]
  }
}