Scryfall search downloader
Just a little extension to download your searches off of Scryfall Simply search as normal on scryfall then click onto the…
Was ist Scryfall search downloader?
Scryfall search downloader ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Just a little extension to download your searches off of Scryfall Simply search as normal on scryfall then click onto the…".
Erweiterungsscreenshots
Scryfall search downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Scryfall search downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dpppnhaepfhhemjfmebnbclpopinimbc |
| Offizielle URL | https://chromewebstore.google.com/detail/scryfall-search-downloade/dpppnhaepfhhemjfmebnbclpopinimbc |
| Beschreibung | Just a little extension to download your searches off of Scryfall Simply search as normal on scryfall then click onto the… |
| Dateigröße | 94.65 KB |
| Installationsanzahl | 110 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2018-08-20 |
| Veröffentlichungsdatum | 2018-08-19 |
| Bewertung | 4.33/5 Insgesamt 3 Bewertungen |
| Entwickler | Unknown |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |