Craigslist Spam Filter
This extension allow you to define text that will be automatically filtered from craigslist listings.
Craigslist Spam Filterคืออะไร?
Craigslist Spam Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.open-environment.org และคุณลักษณะหลักของมันคือ "This extension allow you to define text that will be automatically filtered from craigslist listings."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Craigslist Spam Filter
ดาวน์โหลดไฟล์ส่วนขยาย Craigslist Spam Filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | kkkeknjeaoapjfahjionblppllgdklca |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/craigslist-spam-filter/kkkeknjeaoapjfahjionblppllgdklca |
คำอธิบาย | This extension allow you to define text that will be automatically filtered from craigslist listings. |
ขนาดไฟล์ | 59.68 KB |
จำนวนการติดตั้ง | 88 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2016-04-21 |
วันที่เผยแพร่ | 2016-04-21 |
คะแนน | 2.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | http://www.open-environment.org |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" } ] } |