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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        }
    ]
}