Hearthstone Deck Highlighter
A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection
Co to jest Hearthstone Deck Highlighter?
Hearthstone Deck Highlighter to rozszerzenie Chrome opracowane przez roberthartjr, a jego główną funkcją jest „A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Hearthstone Deck Highlighter
Pobierz pliki rozszerzeń Hearthstone Deck Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Name has been changed to "Hearthstone Deck Highlighter". Added the ability to automatically update your collection from the hearthpwn.com site using innkeeper. Steps --------- Add your collection to the Hearthpwn.com site using Innkeeper. http://www.innkeeper.com/ Go to your collection page and click on the update collection button in red. It will automatically update it.
Podstawowe informacje o rozszerzeniu
Nazwa | Hearthstone Deck Highlighter |
ID | jepahkmnkblfichnniogaiodomcojjkc |
Oficjalny URL | https://chromewebstore.google.com/detail/hearthstone-deck-highligh/jepahkmnkblfichnniogaiodomcojjkc |
Opis | A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection |
Rozmiar pliku | 87.09 KB |
Liczba instalacji | 34 |
Aktualna Wersja | 0.4.0 |
Ostatnia Aktualizacja | 2015-12-15 |
Data Publikacji | 2015-12-15 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | roberthartjr |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hearthstone Deck Highlighter", "version": "0.4.0", "description": "A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection", "author": "Robert Hart", "content_scripts": [ { "matches": [ "http:\/\/www.hearthpwn.com\/decks\/*", "http:\/\/www.hearthpwn.com\/members\/*\/collection" ], "js": [ "jquery-2.1.4.js", "functions.js", "content.js" ], "css": [ "content.css" ], "run_at": "document_end" } ], "permissions": [ "tabs", "storage" ], "web_accessible_resources": [ "*.json", "options.html" ], "options_ui": { "page": "options.html", "chrome_style": true } } |