Card Clip

Adds an EDHREC-like clipboard feature to Scryfall

Wat is Card Clip?

Card Clip is een Chrome-extensie ontwikkeld door hearstjacob8, en de belangrijkste functie is "Adds an EDHREC-like clipboard feature to Scryfall".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Card Clip

Download Card Clip-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A browser extension that adds an EDHREC-like clipboard feature to Scryfall.

Check out and contribute here: https://github.com/JacobHearst/ScryfallClipboard                    

Basisinformatie over de Extensie

Naam Card Clip Card Clip
ID npglimimpnllddjddphoagcngmiipkkc
Officiële URL https://chromewebstore.google.com/detail/card-clip/npglimimpnllddjddphoagcngmiipkkc
Beschrijving Adds an EDHREC-like clipboard feature to Scryfall
Bestandsgrootte 55.79 KB
Aantal Installaties 149
Huidige Versie 1.4.0
Laatst Bijgewerkt 2022-09-26
Publicatiedatum 2022-05-18
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar hearstjacob8
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/JacobHearst/CardClip/
Help Pagina-URL https://github.com/JacobHearst/CardClip/blob/main/SUPPORT.md
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Card Clip",
    "version": "1.4.0",
    "description": "Adds an EDHREC-like clipboard feature to Scryfall",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/scryfall.com\/*",
                "*:\/\/tagger.scryfall.com\/*"
            ],
            "js": [
                "ContentScripts\/Clipboard.js",
                "ContentScripts\/Animation.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/duplicate.svg",
                "img\/trash.svg",
                "img\/clip.svg"
            ],
            "matches": [
                "*:\/\/scryfall.com\/*",
                "*:\/\/tagger.scryfall.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon\/logo16.png",
        "32": "img\/icon\/logo32.png",
        "48": "img\/icon\/logo48.png",
        "128": "img\/icon\/logo128.png"
    }
}