Unseenly

Unseenly for Facebook hides the seen feature in Facebook chat and Messenger. Your friends can't know when you read their message

Что такое Unseenly?

Unseenly - это расширение Chrome, разработанное ikva eSolutions, и его основная функция - "Unseenly for Facebook hides the seen feature in Facebook chat and Messenger. Your friends can't know when you read their message".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Unseenly

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

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

                        Unseenly extension is for hiding the seen feature in Facebook chat. Currently this extension will work on www.facebook.com, m.facebook.com and messenger.com 

All you have to do is just install the extension and you are good to go. You can easily toggle the extension ON and OFF by clicking the unseenly icon from your extensions list. 

This is completely free, secure and free from malware and no unwanted pop-ups.                    

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

Название Unseenly Unseenly
ID mmjginkjeljiaiafplppfkfdindcjkfi
Официальный URL https://chromewebstore.google.com/detail/unseenly/mmjginkjeljiaiafplppfkfdindcjkfi
Описание Unseenly for Facebook hides the seen feature in Facebook chat and Messenger. Your friends can't know when you read their message
Размер файла 348 KB
Количество установок 1,163
Текущая Версия 2.0
Последнее Обновление 2019-02-07
Дата публикации 2019-02-07
Рейтинг 3.17/5 Всего 12 оценок
Разработчик ikva eSolutions
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.geekdashboard.com/disable-facebook-seen-feature/
URL страницы помощи https://www.geekdashboard.com/contact-us/
URL страницы политики конфиденциальности https://www.geekdashboard.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unseenly",
    "version": "2.0",
    "manifest_version": 2,
    "description": "Unseenly for Facebook hides the seen feature in Facebook chat and Messenger. Your friends can't know when you read their message",
    "background": {
        "scripts": [
            "settings\/source\/lib\/store.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.messenger.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/hide_chat_seen.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.messenger.com\/*",
        "*:\/\/*.unseenly.com\/*"
    ],
    "browser_action": {
        "default_icon": "img\/icon48.png",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}