WhatsApp Web - Background Changer

Change the chat background on the WhatsApp Web Interface.

Что такое WhatsApp Web - Background Changer?

WhatsApp Web - Background Changer - это расширение Chrome, разработанное http://rastercrow.me, и его основная функция - "Change the chat background on the WhatsApp Web Interface.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения WhatsApp Web - Background Changer

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

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

                        NEW UPDATE 1.2 : Added custom default images.

WhatsApp Web - Background Changer lets you change the current chat background to a custom one.
You simply need to add an URL to the background image you want and it's done!

PRIVACY
The extension doesn't save any data from the user, Chrome or WhatsApp Web.
It also only runs when there is a tab with WhatsApp Web active.

LEGAL
WhatsApp™ is a trademark of WhatsApp Inc. This is an independent project developed by RasterCrow and has no relationship to WhatsApp™ or WhatsApp Inc.


Source Code available here : github.com/RasterCrow/WhatsappWeb-BackgroundChanger                    

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

Название WhatsApp Web - Background Changer WhatsApp Web - Background Changer
ID inhinhfkmafbnibcooclidbjhagfoaoj
Официальный URL https://chrome.google.com/webstore/detail/whatsapp-web-background-c/inhinhfkmafbnibcooclidbjhagfoaoj
Описание Change the chat background on the WhatsApp Web Interface.
Размер файла 54.84 KB
Количество установок 989
Текущая Версия 1.4
Последнее Обновление 2021-07-09
Дата публикации 2020-10-18
Рейтинг 2.71/5 Всего 7 оценок
Разработчик http://rastercrow.me
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/RasterCrow/WhatsappWeb-BackgroundChanger
URL страницы помощи https://github.com/RasterCrow/WhatsappWeb-BackgroundChanger
Поддерживаемые языки en,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "default_locale": "en",
    "version": "1.4",
    "description": "__MSG_appDesc__",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/web.whatsapp.com\/"
            ],
            "js": [
                "libraries\/jquery.js",
                "libraries\/arrive.js",
                "setBackground.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}