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"
    ]
}