Craigslist Spam Filter
This extension allow you to define text that will be automatically filtered from craigslist listings.
什麼是Craigslist Spam Filter?
Craigslist Spam Filter是由http://www.open-environment.org開發的Chrome擴展程式,該擴展的主要功能是“This extension allow you to define text that will be automatically filtered from craigslist listings.”。
擴展截圖
下載Craigslist Spam Filter擴展crx文件
下載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 |
官方網址 | 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" } ] } |