Craigslist Rental Search Filter

Make searching for places to rent on Craigslist easier by automatically filtering out unwanted results.

Craigslist Rental Search Filterคืออะไร?

Craigslist Rental Search Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Casual Creations และคุณลักษณะหลักของมันคือ "Make searching for places to rent on Craigslist easier by automatically filtering out unwanted results."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Craigslist Rental Search Filter

ดาวน์โหลดไฟล์ส่วนขยาย Craigslist Rental Search Filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Searching for a place to rent can quickly become a chore. With fake posts, scammers, and realtors posting houses for sale, there's just as much time spent blocking unwanted results as there is looking for the right place to rent.

Craigslist Search Filter adds an extra layer of filters to the craigslist search results based on the post's images and/or title. Allowing you to hide posts containing the attributes that you don't want to see (aka attributes most commonly found in spam posts in your area). Helping you to find real rentals from real landlords faster.

Change Log:
--------------
v1.1.1 Minor styling fixes on the options popup.

v1.1 Added custom text filtering and the option to filter on a minimum image limit.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Craigslist Rental Search Filter Craigslist Rental Search Filter
ID eollmblmabebdjioglffmofpmanmoajd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/craigslist-rental-search/eollmblmabebdjioglffmofpmanmoajd
คำอธิบาย Make searching for places to rent on Craigslist easier by automatically filtering out unwanted results.
ขนาดไฟล์ 24.38 KB
จำนวนการติดตั้ง 43
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2017-06-27
วันที่เผยแพร่ 2017-06-27
ผู้พัฒนา Casual Creations
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Craigslist Rental Search Filter",
    "short_name": "Craigslist Search Filter",
    "description": "Make searching for places to rent on Craigslist easier by automatically filtering out unwanted results.",
    "version": "1.1.1",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.craigslist.org\/search\/apa",
                "https:\/\/*.craigslist.org\/search\/apa?*",
                "https:\/\/*.craigslist.org\/search\/nfa",
                "https:\/\/*.craigslist.org\/search\/nfa?*",
                "https:\/\/*.craigslist.org\/search\/abo",
                "https:\/\/*.craigslist.org\/search\/abo?*",
                "https:\/\/*.craigslist.org\/search\/aiv",
                "https:\/\/*.craigslist.org\/search\/aiv?*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}