Tucker
Tuck MTG cards away for later use, across all of your favorite sites.
Tuckerคืออะไร?
Tucker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Null Parameter และคุณลักษณะหลักของมันคือ "Tuck MTG cards away for later use, across all of your favorite sites."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tucker
ดาวน์โหลดไฟล์ส่วนขยาย Tucker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |