True Idealista

Makes searching for an ideal apartment easier with new filters and more.

True Idealistaคืออะไร?

True Idealista เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kamil.latosinski และคุณลักษณะหลักของมันคือ "Makes searching for an ideal apartment easier with new filters and more."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย True Idealista

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

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

                        If you like or dislike the extension please take a minute to leave the review. I am thinking about developing a more robust solution and create a website that aggregates offers from many places and has many new filters. Your reviews give me motivation to do it :)

An Idealista extension to improve your searching experience. Currently it introduces three new filters.

You can:
- search for anything inside ad description
- filter by rental period, either short term or long term
- filter by rental type, either from private owner or an agency
- filter by energy consumption

If you have any feature requests or something is not working, feel free to contact me via email. Enjoy!

Changelog:
- Version 2.0.1 Bug fix not correctly matching temporal rentals
- Version 2.0.0 introduces new countries: Portugal and Italy. You can also use some of the filters on sale listing.
- Version 1.1.0 introduces new energy consumption filter.                    

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

ชื่อ True Idealista True Idealista
ID egglpbadghnchmhpljcpjjapeomodcim
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/true-idealista/egglpbadghnchmhpljcpjjapeomodcim
คำอธิบาย Makes searching for an ideal apartment easier with new filters and more.
ขนาดไฟล์ 225 KB
จำนวนการติดตั้ง 227
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2023-07-11
วันที่เผยแพร่ 2022-09-23
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา kamil.latosinski
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/e/2PACX-1vQLrcOYxb2mvLBaFHoteQi5_FyEuojwK1jUVARmaWIqtSqfag60_CZI9_G3KVPkt734P08vKQUaODZP/pub
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "True Idealista",
    "description": "Makes searching for an ideal apartment easier with new filters and more.",
    "version": "2.0.1",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/true_idealista16.png",
        "32": "\/images\/true_idealista32.png",
        "48": "\/images\/true_idealista48.png",
        "128": "\/images\/true_idealista128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "true-idealista-background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.idealista.com\/alquiler-viviendas\/*",
                "https:\/\/www.idealista.com\/*\/alquiler-viviendas\/*",
                "https:\/\/www.idealista.com\/venta-viviendas\/*",
                "https:\/\/www.idealista.com\/*\/venta-viviendas\/*",
                "https:\/\/www.idealista.it\/affitto-case\/*",
                "https:\/\/www.idealista.it\/*\/affitto-case\/*",
                "https:\/\/www.idealista.it\/vendita-case\/*",
                "https:\/\/www.idealista.it\/*\/vendita-case\/*",
                "https:\/\/www.idealista.pt\/arrendar-casas\/*",
                "https:\/\/www.idealista.pt\/*\/arrendar-casas\/*",
                "https:\/\/www.idealista.pt\/comprar-casas\/*",
                "https:\/\/www.idealista.pt\/*\/comprar-casas\/*"
            ],
            "js": [
                "true-idealista-content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "true-idealista-web.js",
                "true-idealista-style.css"
            ],
            "matches": [
                "https:\/\/www.idealista.com\/*",
                "https:\/\/www.idealista.it\/*",
                "https:\/\/www.idealista.pt\/*"
            ]
        }
    ]
}