Tucker
Tuck MTG cards away for later use, across all of your favorite sites.
Tucker란 무엇입니까?
Tucker은(는) Null Parameter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tuck MTG cards away for later use, across all of your favorite sites."입니다.
확장 프로그램 스크린샷
Tucker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Enhance your experience across all of your favorite sites by adding card image popups when you hover over a card, and enabling you to save any card you find for later use, so that you don't forget to add it to your favorite deck. Then save, organize, and export a list of all the cards you've tucked away, to do with as you please. This version ---------- - Add TCGPlayer prices to popup. - Allow you to purchase cards en masse from TCGPlayer. - Added support for New Reddit. - Fixed Scryfall views. - Fixed a bunch of other little errors. Currently in Beta.
확장 프로그램 기본 정보
이름 | |
ID | fljnbkipncgblmhjkcdckjnmcemoijnf |
공식 URL | https://chrome.google.com/webstore/detail/tucker/fljnbkipncgblmhjkcdckjnmcemoijnf |
설명 | Tuck MTG cards away for later use, across all of your favorite sites. |
파일 크기 | 134 KB |
설치 횟수 | 12 |
현재 버전 | 0.9 |
최근 업데이트 | 2019-07-04 |
출시 날짜 | 2019-07-04 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Null Parameter |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://tuck.cards |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tucker", "short_name": "Tucker", "manifest_version": 2, "description": "Tuck MTG cards away for later use, across all of your favorite sites.", "version": "0.9", "homepage_url": "https:\/\/tuck.cards", "background": { "persistent": true, "scripts": [ "app\/lib\/jquery-3.2.1.min.js", "app\/scripts\/init.js", "app\/scripts\/scry.js", "app\/scripts\/storage.js", "app\/scripts\/background.js", "app\/scripts\/tcgplayer.js" ] }, "browser_action": { "default_icon": "icon-128.png", "default_title": "Tucker" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "app\/lib\/jquery-3.2.1.min.js", "app\/scripts\/init.js" ], "css": [ "app\/styles\/tucker.css" ] }, { "matches": [ "*:\/\/*.reddit.com\/*" ], "js": [ "app\/sites\/reddit.tucker.js" ] }, { "matches": [ "*:\/\/*.scryfall.com\/*" ], "js": [ "app\/sites\/scryfall.tucker.js" ] }, { "matches": [ "*:\/\/gatherer.wizards.com\/*" ], "js": [ "app\/sites\/gatherer.tucker.js" ] }, { "matches": [ "*:\/\/*.deckbox.org\/*" ], "js": [ "app\/sites\/deckbox.tucker.js" ] }, { "matches": [ "*:\/\/*.tappedout.net\/*" ], "js": [ "app\/sites\/tappedout.tucker.js" ] } ], "permissions": [ "tabs", "unlimitedStorage", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "app\/images\/*", "app\/scripts\/*", "app\/views\/*", "app\/sites\/deckbox-inject.tucker.js" ] } |