Craigslist Spam Filter
This extension allow you to define text that will be automatically filtered from craigslist listings.
Co to jest Craigslist Spam Filter?
Craigslist Spam Filter to rozszerzenie Chrome opracowane przez http://www.open-environment.org, a jego główną funkcją jest „This extension allow you to define text that will be automatically filtered from craigslist listings.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Craigslist Spam Filter
Pobierz pliki rozszerzeń Craigslist Spam Filter 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
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | kkkeknjeaoapjfahjionblppllgdklca |
Oficjalny URL | https://chrome.google.com/webstore/detail/craigslist-spam-filter/kkkeknjeaoapjfahjionblppllgdklca |
Opis | This extension allow you to define text that will be automatically filtered from craigslist listings. |
Rozmiar pliku | 59.68 KB |
Liczba instalacji | 88 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2016-04-21 |
Data Publikacji | 2016-04-21 |
Ocena | 2.33/5 Łącznie 3 Oceny |
Deweloper | http://www.open-environment.org |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |