Gartic Easy to Draw

Gartic Easy to Draw

Faça ótimos desenhos com facilidade no Gartic!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gartic Easy to Draw",
  "short_name": "GED",
  "version": "1.2",
  "description": "Faça ótimos desenhos com facilidade no Gartic!",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "unlimited_storage",
    "contextMenus",
    "cookies",
    "storage",
    "idle",
    "activeTab"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "*://*.andyjss.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.gartic.com.br/*",
        "*://*.gartic.io/*"
      ],
      "all_frames": true,
      "js": [
        "js/jquery-3.2.1.min.js"
      ],
      "run_at": "document_end",
      "persistent": false
    }
  ]
}