Check

Check

Verify breaking news online

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Check",
  "description": "Verify breaking news online",
  "version": "2.5.13",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L"
      },
      "description": "Verify breaking news online"
    }
  },
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "check19-in.png",
    "default_title": "Check"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "check48.png",
    "128": "check128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "popup.html"
  ],
  "externally_connectable": {
    "matches": [
      "https://checkmedia.org/"
    ]
  }
}