Scryfall search downloader

Scryfall search downloader

Just a little extension to download your searches off of Scryfall Simply search as normal on scryfall then click onto the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Scryfall search downloader",
  "short_name": "Scryfall search downloader",
  "version": "1.1",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.scryfall.com/search?*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  }
}