Card Clip
Adds an EDHREC-like clipboard feature to Scryfall
What is Card Clip?
Card Clip is a Chrome extension developed by hearstjacob8, and its main feature is "Adds an EDHREC-like clipboard feature to Scryfall".
Extension Screenshots
Download Card Clip Extension CRX File
Download Card Clip 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
A browser extension that adds an EDHREC-like clipboard feature to Scryfall. Check out and contribute here: https://github.com/JacobHearst/ScryfallClipboard
Extension Basic Information
Name | Card Clip |
ID | npglimimpnllddjddphoagcngmiipkkc |
Official URL | https://chromewebstore.google.com/detail/card-clip/npglimimpnllddjddphoagcngmiipkkc |
Description | Adds an EDHREC-like clipboard feature to Scryfall |
File Size | 55.79 KB |
Installation Count | 149 |
Current Version | 1.4.0 |
Last Updated | 2022-09-26 |
Publish Date | 2022-05-18 |
Rating | 5.00/5 Total 3 Ratings |
Developer | hearstjacob8 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/JacobHearst/CardClip/ |
Help Page URL | https://github.com/JacobHearst/CardClip/blob/main/SUPPORT.md |
Supported Languages | 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" } } |