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" } ] } |