Show Tenure for Rightmove

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

O que é Show Tenure for Rightmove?

Show Tenure for Rightmove é uma extensão do Chrome desenvolvida por Cem Ratip, e sua principal característica é "This extension simplifies your Rightmove search by: - displaying the tenure of each property on the results page (without you…".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Show Tenure for Rightmove

Baixe arquivos de extensão Show Tenure for Rightmove no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Show Tenure for Rightmove Show Tenure for Rightmove
ID lbpfddbhfllnpichkbfffhooliopcpea
URL Oficial https://chromewebstore.google.com/detail/show-tenure-for-rightmove/lbpfddbhfllnpichkbfffhooliopcpea
Descrição This extension simplifies your Rightmove search by: - displaying the tenure of each property on the results page (without you…
Tamanho do Arquivo 49.58 KB
Contagem de Instalações 54
Versão Atual 1.0
Última Atualização 2022-02-03
Data de Publicação 2022-02-02
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Cem Ratip
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}