Craigslist Spam Filter

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

Qu'est-ce que Craigslist Spam Filter ?

Craigslist Spam Filter est une extension Chrome développée par http://www.open-environment.org, et sa fonction principale est "This extension allow you to define text that will be automatically filtered from craigslist listings.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Craigslist Spam Filter

Téléchargez les fichiers d'extension Craigslist Spam Filter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Craigslist Spam Filter Craigslist Spam Filter
ID kkkeknjeaoapjfahjionblppllgdklca
URL Officiel https://chrome.google.com/webstore/detail/craigslist-spam-filter/kkkeknjeaoapjfahjionblppllgdklca
Description This extension allow you to define text that will be automatically filtered from craigslist listings.
Taille du Fichier 59.68 KB
Nombre d'Installations 88
Version Actuelle 1.0
Dernière Mise à Jour 2016-04-21
Date de Publication 2016-04-21
Évaluation 2.33/5 Total 3 Évaluations
Développeur http://www.open-environment.org
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}