Idioms and Phrases

Idioms and Phrases

Shows idiom of the day in the new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Idioms and Phrases",
  "description": "Shows idiom of the day in the new tab.",
  "version": "0.6",
  "incognito": "split",
  "chrome_url_overrides": {
    "newtab": "new_tab_idiom.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-3.2.1.min.js",
        "idiom.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "topSites",
    "chrome://favicon/"
  ],
  "manifest_version": 2
}