HGLT

HGLT

HGLT is designed primarily to learn languages ​​while visiting websites, but could be used to learn or remember many other things.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HGLT",
  "short_name": "Translate, learn, study and memorize languages",
  "version": "0.0.7",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "images/inactive_128.png",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "16": "images/inactive_16.png",
    "48": "images/inactive_48.png",
    "128": "images/inactive_128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "contextMenus",
    "https://*/",
    "http://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "exclude_matches": [
        "*://translate.google.com/*",
        "*://chrome.google.com/*"
      ],
      "js": [
        "content/highlightstoredElemets.js",
        "content/markers.js",
        "content/HgltElement.js",
        "content/highligter/highlighter.js",
        "content/mainContent.js"
      ],
      "css": [
        "content/highligter/hightlighter.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://translate.google.com/*"
      ],
      "js": [
        "content/translation/translation.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "js": [
        "content/imageSearch/imageSearch.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "content/highligter/*"
  ],
  "background": {
    "page": "background/background.html",
    "persistent": false
  }
}