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.".

Снимки экрана расширения

screenshot

Скачать файл 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.                    

Основная информация о расширении

Название Craigslist Spam Filter Craigslist Spam Filter
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"
        }
    ]
}