AirBnB Non-Smoking Filter

This extension will provide a button on all search results, allowing for one-click detection of smoking policy

Что такое AirBnB Non-Smoking Filter?

AirBnB Non-Smoking Filter - это расширение Chrome, разработанное bbarr1384, и его основная функция - "This extension will provide a button on all search results, allowing for one-click detection of smoking policy".

Скачать файл CRX расширения AirBnB Non-Smoking Filter

Скачайте файлы расширений AirBnB Non-Smoking Filter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        AirBnB does not currently allow you to search for non-smoking rooms.

This plugin runs only on AirBnB search results pages, placing a button on the top left of each listing which can be clicked to determine if that listing allows smoking or not. This is not abusive of AirBnB's system in anyway, as you would have to make the exact same requests to their servers to get this information anyway, but with a good bit more effort on your part.

Caveat: When you go to a new page of results via pagination links at the bottom, you will have to refresh the page to get the buttons to show up.                    

Основная информация о расширении

Название AirBnB Non-Smoking Filter AirBnB Non-Smoking Filter
ID mljjhgihakejejaoeaniepjgdllmamol
Официальный URL https://chrome.google.com/webstore/detail/airbnb-non-smoking-filter/mljjhgihakejejaoeaniepjgdllmamol
Описание This extension will provide a button on all search results, allowing for one-click detection of smoking policy
Размер файла 10.28 KB
Количество установок 54
Текущая Версия 1.1
Последнее Обновление 2017-11-02
Дата публикации 2017-11-02
Рейтинг 1.33/5 Всего 3 оценок
Разработчик bbarr1384
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AirBnB Non-Smoking Filter",
    "description": "This extension will provide a button on all search results, allowing for one-click detection of smoking policy",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.airbnb.com\/s\/*"
            ],
            "js": [
                "smoking-not-allowed.js"
            ]
        }
    ]
}