StatsFacts

StatsFacts

The extension highlights one or several words on a webpage, linking them to additional statistical information about the keyword.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.0.2",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "scripts/thirdParty/jquery-3.5.1.min.js",
      "scripts/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "images/stat_16.png",
      "32": "images/stat_32.png",
      "48": "images/stat_48.png",
      "128": "images/stat_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": false,
      "js": [
        "scripts/thirdParty/jquery-3.5.1.min.js",
        "scripts/thirdParty/psl.min.js",
        "scripts/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "toggle_active": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Toggle keyword detection on and off"
    }
  },
  "icons": {
    "16": "images/stat_16.png",
    "32": "images/stat_32.png",
    "48": "images/stat_48.png",
    "128": "images/stat_128.png"
  },
  "web_accessible_resources": [
    "stat.json",
    "images/stat_16.png"
  ],
  "default_locale": "et",
  "manifest_version": 2
}