Craigslist Spam Filter
This extension allow you to define text that will be automatically filtered from craigslist listings.
Apa itu Craigslist Spam Filter?
Craigslist Spam Filter adalah ekstensi Chrome yang dikembangkan oleh http://www.open-environment.org, dan fitur utamanya adalah "This extension allow you to define text that will be automatically filtered from craigslist listings.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Craigslist Spam Filter
Unduh file ekstensi Craigslist Spam Filter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | kkkeknjeaoapjfahjionblppllgdklca |
URL Resmi | https://chrome.google.com/webstore/detail/craigslist-spam-filter/kkkeknjeaoapjfahjionblppllgdklca |
Deskripsi | This extension allow you to define text that will be automatically filtered from craigslist listings. |
Ukuran File | 59.68 KB |
Jumlah Instalasi | 88 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2016-04-21 |
Tanggal Publikasi | 2016-04-21 |
Penilaian | 2.33/5 Total 3 Penilaian |
Pengembang | http://www.open-environment.org |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } ] } |