Card Clip
Adds an EDHREC-like clipboard feature to Scryfall
Was ist Card Clip?
Card Clip ist eine Chrome-Erweiterung, die von hearstjacob8 entwickelt wurde, und ihr Hauptmerkmal ist "Adds an EDHREC-like clipboard feature to Scryfall".
Erweiterungsscreenshots
Card Clip-Erweiterungs-CRX-Datei herunterladen
Laden Sie Card Clip-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
A browser extension that adds an EDHREC-like clipboard feature to Scryfall. Check out and contribute here: https://github.com/JacobHearst/ScryfallClipboard
Grundlegende Informationen zur Erweiterung
Name | Card Clip |
ID | npglimimpnllddjddphoagcngmiipkkc |
Offizielle URL | https://chromewebstore.google.com/detail/card-clip/npglimimpnllddjddphoagcngmiipkkc |
Beschreibung | Adds an EDHREC-like clipboard feature to Scryfall |
Dateigröße | 55.79 KB |
Installationsanzahl | 149 |
Aktuelle Version | 1.4.0 |
Letztes Update | 2022-09-26 |
Veröffentlichungsdatum | 2022-05-18 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | hearstjacob8 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/JacobHearst/CardClip/ |
Hilfeseite URL | https://github.com/JacobHearst/CardClip/blob/main/SUPPORT.md |
Unterstützte Sprachen | 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" } } |