Craigslist Spam Filter

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

Cos'è Craigslist Spam Filter?

Craigslist Spam Filter è un'estensione di Chrome sviluppata da http://www.open-environment.org, e la sua funzione principale è "This extension allow you to define text that will be automatically filtered from craigslist listings.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Craigslist Spam Filter

Scarica i file di estensione Craigslist Spam Filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Craigslist Spam Filter Craigslist Spam Filter
ID kkkeknjeaoapjfahjionblppllgdklca
URL Ufficiale https://chrome.google.com/webstore/detail/craigslist-spam-filter/kkkeknjeaoapjfahjionblppllgdklca
Descrizione This extension allow you to define text that will be automatically filtered from craigslist listings.
Dimensione del File 59.68 KB
Conteggio Installazioni 88
Versione Corrente 1.0
Ultimo Aggiornamento 2016-04-21
Data di Pubblicazione 2016-04-21
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore http://www.open-environment.org
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}