Craigslist Spam Filter

This extension allow you to define text that will be automatically filtered from craigslist listings.

Was ist Craigslist Spam Filter?

Craigslist Spam Filter ist eine Chrome-Erweiterung, die von http://www.open-environment.org entwickelt wurde, und ihr Hauptmerkmal ist "This extension allow you to define text that will be automatically filtered from craigslist listings.".

Erweiterungsscreenshots

screenshot

Craigslist Spam Filter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Craigslist Spam Filter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Craigslist Spam Filter Craigslist Spam Filter
ID kkkeknjeaoapjfahjionblppllgdklca
Offizielle URL https://chrome.google.com/webstore/detail/craigslist-spam-filter/kkkeknjeaoapjfahjionblppllgdklca
Beschreibung This extension allow you to define text that will be automatically filtered from craigslist listings.
Dateigröße 59.68 KB
Installationsanzahl 88
Aktuelle Version 1.0
Letztes Update 2016-04-21
Veröffentlichungsdatum 2016-04-21
Bewertung 2.33/5 Insgesamt 3 Bewertungen
Entwickler http://www.open-environment.org
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}