Hearthstone Deck Highlighter
A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection
O que é Hearthstone Deck Highlighter?
Hearthstone Deck Highlighter é uma extensão do Chrome desenvolvida por roberthartjr, e sua principal característica é "A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hearthstone Deck Highlighter
Baixe arquivos de extensão Hearthstone Deck Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Hearthstone Deck Highlighter |
ID | jepahkmnkblfichnniogaiodomcojjkc |
URL Oficial | https://chromewebstore.google.com/detail/hearthstone-deck-highligh/jepahkmnkblfichnniogaiodomcojjkc |
Descrição | A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection |
Tamanho do Arquivo | 87.09 KB |
Contagem de Instalações | 34 |
Versão Atual | 0.4.0 |
Última Atualização | 2015-12-15 |
Data de Publicação | 2015-12-15 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | roberthartjr |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } } |