Craigslist Spam Filter

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

Craigslist Spam Filterとは何ですか?

Craigslist Spam Filterはhttp://www.open-environment.orgによって開発されたChromeの拡張機能で、その主な機能は「This extension allow you to define text that will be automatically filtered from craigslist listings.」です。

拡張機能のスクリーンショット

screenshot

Craigslist Spam Filter拡張機能のCRXファイルをダウンロード

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
Eメール [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"
        }
    ]
}