Show Tenure for Rightmove

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

Vad är Show Tenure for Rightmove?

Show Tenure for Rightmove är en Chrome-tillägg utvecklad av Cem Ratip, och dess huvudfunktion är "This extension simplifies your Rightmove search by: - displaying the tenure of each property on the results page (without you…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Show Tenure for Rightmove-förlängningens CRX-fil

Ladda ner Show Tenure for Rightmove-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Show Tenure for Rightmove Show Tenure for Rightmove
ID lbpfddbhfllnpichkbfffhooliopcpea
Officiell webbadress https://chromewebstore.google.com/detail/show-tenure-for-rightmove/lbpfddbhfllnpichkbfffhooliopcpea
Beskrivning This extension simplifies your Rightmove search by: - displaying the tenure of each property on the results page (without you…
Filstorlek 49.58 KB
Antal Installationer 54
Aktuell Version 1.0
Senast Uppdaterad 2022-02-03
Publiceringsdatum 2022-02-02
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Cem Ratip
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}