Craigslist Spam Filter
This extension allow you to define text that will be automatically filtered from craigslist listings.
O que é Craigslist Spam Filter?
Craigslist Spam Filter é uma extensão do Chrome desenvolvida por http://www.open-environment.org, e sua principal característica é "This extension allow you to define text that will be automatically filtered from craigslist listings.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Craigslist Spam Filter
Baixe arquivos de extensão Craigslist Spam Filter 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
Hate it when spammers flood your craigslist search with repeated listings? Use this extension to remove unwanted ads. Just enter keywords or phrases, and this extension will remove the listings that contain those either in the title or location.
Informações Básicas da Extensão
Nome | |
ID | kkkeknjeaoapjfahjionblppllgdklca |
URL Oficial | https://chrome.google.com/webstore/detail/craigslist-spam-filter/kkkeknjeaoapjfahjionblppllgdklca |
Descrição | This extension allow you to define text that will be automatically filtered from craigslist listings. |
Tamanho do Arquivo | 59.68 KB |
Contagem de Instalações | 88 |
Versão Atual | 1.0 |
Última Atualização | 2016-04-21 |
Data de Publicação | 2016-04-21 |
Classificação | 2.33/5 Total de 3 Avaliações |
Desenvolvedor | http://www.open-environment.org |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Craigslist Spam Filter", "version": "1.0", "description": "This extension allow you to define text that will be automatically filtered from craigslist listings.", "manifest_version": 2, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "page": "background.html" }, "browser_action": { "name": "Filter Craigslist", "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_popup": "popup.html" }, "permissions": [ "tabs", "storage", "https:\/\/*\/*", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/craigslist.org\/*", "http:\/\/*.craigslist.org\/*", "https:\/\/*.craigslist.org\/*", "https:\/\/*.craigslist.org\/*" ], "js": [ "jquery-1.9.1.min.js", "background.js" ], "run_at": "document_start" } ] } |