Gyazo Download

Gyazo Download

Add a download button to Gyazo images

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gyazo Download",
  "description": "Add a download button to Gyazo images",
  "version": "1.0",
  "icons": {
    "16": "icons/icon16.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png",
    "256": "icons/icon256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://gyazo.com/*"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "downloads"
  ],
  "host_permissions": [
    "https://gyazo.com/*"
  ]
}