Craigslist Spam Filter
This extension allow you to define text that will be automatically filtered from craigslist listings.
What is Craigslist Spam Filter?
Craigslist Spam Filter is a Chrome extension developed by http://www.open-environment.org, and its main feature is "This extension allow you to define text that will be automatically filtered from craigslist listings.".
Extension Screenshots
Download Craigslist Spam Filter Extension CRX File
Download Craigslist Spam Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | kkkeknjeaoapjfahjionblppllgdklca |
Official URL | https://chrome.google.com/webstore/detail/craigslist-spam-filter/kkkeknjeaoapjfahjionblppllgdklca |
Description | This extension allow you to define text that will be automatically filtered from craigslist listings. |
File Size | 59.68 KB |
Installation Count | 88 |
Current Version | 1.0 |
Last Updated | 2016-04-21 |
Publish Date | 2016-04-21 |
Rating | 2.33/5 Total 3 Ratings |
Developer | http://www.open-environment.org |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |