Show Tenure for Rightmove

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

Hvad er Show Tenure for Rightmove?

Show Tenure for Rightmove er en Chrome-udvidelse udviklet af Cem Ratip, og dens hovedfunktion er "This extension simplifies your Rightmove search by: - displaying the tenure of each property on the results page (without you…".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Show Tenure for Rightmove-udvidelses-CRX-fil

Download Show Tenure for Rightmove-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Show Tenure for Rightmove Show Tenure for Rightmove
ID lbpfddbhfllnpichkbfffhooliopcpea
Officiel URL https://chromewebstore.google.com/detail/show-tenure-for-rightmove/lbpfddbhfllnpichkbfffhooliopcpea
Beskrivelse This extension simplifies your Rightmove search by: - displaying the tenure of each property on the results page (without you…
Filstørrelse 49.58 KB
Antal Installationer 54
Nuværende Version 1.0
Senest Opdateret 2022-02-03
Udgivelsesdato 2022-02-02
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Cem Ratip
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}