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 Casual Creations द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make searching for places to rent on Craigslist easier by automatically filtering out unwanted results."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Craigslist Rental Search Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |