Craigslist Spam Filter

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

Co je Craigslist Spam Filter?

Craigslist Spam Filter je rozšíření Chrome vyvinuté http://www.open-environment.org, a jeho hlavní funkcí je „This extension allow you to define text that will be automatically filtered from craigslist listings.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Craigslist Spam Filter

Stáhněte si soubory rozšíření Craigslist Spam Filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Craigslist Spam Filter Craigslist Spam Filter
ID kkkeknjeaoapjfahjionblppllgdklca
Oficiální URL https://chrome.google.com/webstore/detail/craigslist-spam-filter/kkkeknjeaoapjfahjionblppllgdklca
Popis This extension allow you to define text that will be automatically filtered from craigslist listings.
Velikost souboru 59.68 KB
Počet instalací 88
Aktuální Verze 1.0
Poslední Aktualizace 2016-04-21
Datum Vydání 2016-04-21
Hodnocení 2.33/5 Celkem 3 Hodnocení
Vývojář http://www.open-environment.org
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}