Scryfall search downloader

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

Scryfall search downloader là gì?

Scryfall search downloader là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Just a little extension to download your searches off of Scryfall Simply search as normal on scryfall then click onto the…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Scryfall search downloader

Tải xuống các tệp mở rộng Scryfall search downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Scryfall search downloader Scryfall search downloader
ID dpppnhaepfhhemjfmebnbclpopinimbc
URL Chính Thức https://chromewebstore.google.com/detail/scryfall-search-downloade/dpppnhaepfhhemjfmebnbclpopinimbc
Mô tả Just a little extension to download your searches off of Scryfall Simply search as normal on scryfall then click onto the…
Kích Thước Tệp 94.65 KB
Số Lần Cài Đặt 110
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-08-20
Ngày Phát Hành 2018-08-19
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}