Spoiler Blocker
Blocks spoilers on your Facebook and Twitter feed.
O que é Spoiler Blocker?
Spoiler Blocker é uma extensão do Chrome desenvolvida por spoiler.blocker.dev, e sua principal característica é "Blocks spoilers on your Facebook and Twitter feed.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Spoiler Blocker
Baixe arquivos de extensão Spoiler Blocker 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
Say goodbye to spoilers ruining your favourite TV show or movie. The Spoiler Blocker extension hides posts containing keywords for shows you're watching. Block 'em all * Define lists of keywords, and posts containing any of these keywords will be hidden * Choose whether you want to overlay posts with a white panel or remove them completely * Deactivate lists if already you've finished watching the latest episode Share with others * Visit http://spoilerblocker.herokuapp.com/ to share lists with others * Use download IDs from the website to efficiently get lists into your extension
Informações Básicas da Extensão
Nome | |
ID | ehjbmpkpiidfmlcaialacajddfkpepdo |
URL Oficial | https://chrome.google.com/webstore/detail/spoiler-blocker/ehjbmpkpiidfmlcaialacajddfkpepdo |
Descrição | Blocks spoilers on your Facebook and Twitter feed. |
Tamanho do Arquivo | 804 KB |
Contagem de Instalações | 33 |
Versão Atual | 0.2.3 |
Última Atualização | 2017-01-17 |
Data de Publicação | 2017-01-17 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | spoiler.blocker.dev |
Tipo de Pagamento | free |
Site da Extensão | http://spoilerblocker.herokuapp.com/ |
URL da Página de Ajuda | https://github.com/kabir-plod/spoiler-blocker |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spoiler Blocker", "description": "Blocks spoilers on your Facebook and Twitter feed.", "version": "0.2.3", "browser_action": { "default_title": "Spoiler Blocker", "default_icon": { "16": "img\/icon16.png", "32": "img\/icon32.png" }, "default_popup": "panel.html" }, "options_ui": { "page": "options.html" }, "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "64": "img\/icon64.png", "128": "img\/icon128.png" }, "permissions": [ "activeTab", "storage", "https:\/\/spoilerblocker.herokuapp.com\/downloadList\/*" ], "background": { "page": "bg.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*", "*:\/\/facebook.com\/*" ], "js": [ "fb.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/twitter.com\/*" ], "js": [ "tw.js" ], "run_at": "document_start" } ] } |