Scryfall search downloader

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

What is Scryfall search downloader?

Scryfall search downloader is a Chrome extension developed by Unknown, and its main feature is "Just a little extension to download your searches off of Scryfall Simply search as normal on scryfall then click onto the…".

Extension Screenshots

screenshot

Download Scryfall search downloader Extension CRX File

Download Scryfall search downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Just a little extension to download your searches off of Scryfall

Simply search as normal on scryfall then click onto the extension icon once you reach the search page, then save the file as a csv

For the site: https://scryfall.com
Code at: https://github.com/Verbatiama/ScryfallDownloadExtension                    

Extension Basic Information

Name Scryfall search downloader Scryfall search downloader
ID dpppnhaepfhhemjfmebnbclpopinimbc
Official URL https://chromewebstore.google.com/detail/scryfall-search-downloade/dpppnhaepfhhemjfmebnbclpopinimbc
Description Just a little extension to download your searches off of Scryfall Simply search as normal on scryfall then click onto the…
File Size 94.65 KB
Installation Count 110
Current Version 1.1
Last Updated 2018-08-20
Publish Date 2018-08-19
Rating 4.33/5 Total 3 Ratings
Developer Unknown
Payment Type free
Supported Languages en
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"
    }
}