Craigslist Spam Filter

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

Craigslist Spam Filter là gì?

Craigslist Spam Filter là một tiện ích mở rộng Chrome được phát triển bởi http://www.open-environment.org, và tính năng chính của nó là "This extension allow you to define text that will be automatically filtered from craigslist listings.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Craigslist Spam Filter

Tải xuống các tệp mở rộng Craigslist Spam Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Craigslist Spam Filter Craigslist Spam Filter
ID kkkeknjeaoapjfahjionblppllgdklca
URL Chính Thức https://chrome.google.com/webstore/detail/craigslist-spam-filter/kkkeknjeaoapjfahjionblppllgdklca
Mô tả This extension allow you to define text that will be automatically filtered from craigslist listings.
Kích Thước Tệp 59.68 KB
Số Lần Cài Đặt 88
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-04-21
Ngày Phát Hành 2016-04-21
Đánh Giá 2.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển http://www.open-environment.org
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}