Steam Cleaner
The first extension that I made.
O que é Steam Cleaner?
Steam Cleaner é uma extensão do Chrome desenvolvida por Adam Shaw, e sua principal característica é "The first extension that I made.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Steam Cleaner
Baixe arquivos de extensão Steam Cleaner 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
Cleans up Steam Greenlight pages (removing extra banners) and adds "Vote Down and Next item" button. More features to come in the future.
Informações Básicas da Extensão
Nome | |
ID | blocallakhfbheckclfcjhechmkpeibe |
URL Oficial | https://chromewebstore.google.com/detail/steam-cleaner/blocallakhfbheckclfcjhechmkpeibe |
Descrição | The first extension that I made. |
Tamanho do Arquivo | 16.21 KB |
Contagem de Instalações | 394 |
Versão Atual | 1.0 |
Última Atualização | 2012-11-15 |
Data de Publicação | 2012-11-14 |
Classificação | 3.50/5 Total de 2 Avaliações |
Desenvolvedor | Adam Shaw |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Steam Cleaner", "version": "1.0", "manifest_version": 2, "description": "The first extension that I made.", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.steamcommunity.com\/*", "http:\/\/steamcommunity.com\/*", "http:\/\/*.steampowered.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ] } |