Akinator

Akinator

This extension allows you to play Akinator online and give you access to our game library for immediate game play.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Akinator",
  "version": "1.0",
  "description": "This extension allows you to play Akinator online and give you access to our game library for immediate game play.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "widget/contentscript.js"
      ],
      "matches": [
        "https://*.com/*",
        "https://*.org/*",
        "https://*.net/*",
        "https://*.edu/*",
        "https://*.co/*",
        "https://*.us/*",
        "https://*.io/*",
        "https://*.club/*",
        "https://*.tv/*",
        "https://*.info/*",
        "http://*.com/*",
        "http://*.org/*",
        "http://*.net/*",
        "http://*.edu/*",
        "http://*.co/*",
        "http://*.us/*",
        "http://*.io/*",
        "http://*.club/*",
        "http://*.tv/*",
        "http://*.info/*"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "widget/*"
  ],
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  }
}