Show Tenure for Rightmove

This extension simplifies your Rightmove search by: - displaying the tenure of each property on the results page (without you…

Show Tenure for Rightmoveคืออะไร?

Show Tenure for Rightmove เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cem Ratip และคุณลักษณะหลักของมันคือ "This extension simplifies your Rightmove search by: - displaying the tenure of each property on the results page (without you…"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Show Tenure for Rightmove

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

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

                        This extension simplifies your Rightmove search by:
- displaying the tenure of each property on the results page (without you having to click into each property to check)
- allowing you to export all properties of a particular tenure(s) to a new tab                    

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

ชื่อ Show Tenure for Rightmove Show Tenure for Rightmove
ID lbpfddbhfllnpichkbfffhooliopcpea
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/show-tenure-for-rightmove/lbpfddbhfllnpichkbfffhooliopcpea
คำอธิบาย This extension simplifies your Rightmove search by: - displaying the tenure of each property on the results page (without you…
ขนาดไฟล์ 49.58 KB
จำนวนการติดตั้ง 54
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-02-03
วันที่เผยแพร่ 2022-02-02
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Cem Ratip
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Show Tenure for Rightmove",
    "version": "1.0",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "rightmovelogo.png",
            "32": "rightmovelogo.png",
            "48": "rightmovelogo.png",
            "128": "rightmovelogo.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.rightmove.co.uk\/property-for-sale\/find.html?*"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}