Change Messenger's Theme

A small tool changing the messenger's background

Co to jest Change Messenger's Theme?

Change Messenger's Theme to rozszerzenie Chrome opracowane przez nghiacangao, a jego główną funkcją jest „A small tool changing the messenger's background”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Change Messenger's Theme

Pobierz pliki rozszerzeń Change Messenger's Theme w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Công cụ chỉnh sửa nền facebook messenger                    

Podstawowe informacje o rozszerzeniu

Nazwa Change Messenger's Theme Change Messenger's Theme
ID medockpghmdaaaocjogjgpmjldbgnlaj
Oficjalny URL https://chrome.google.com/webstore/detail/change-messengers-theme/medockpghmdaaaocjogjgpmjldbgnlaj
Opis A small tool changing the messenger's background
Rozmiar pliku 344 KB
Liczba instalacji 364
Aktualna Wersja 2.1.3
Ostatnia Aktualizacja 2020-05-30
Data Publikacji 2020-05-30
Ocena 3.00/5 Łącznie 5 Oceny
Deweloper nghiacangao
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki vi
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Change Messenger's Theme",
    "version": "2.1.3",
    "description": "A small tool changing the messenger's background",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon.png",
            "48": "icon.png",
            "32": "icon.png"
        },
        "default_title": "Messenger's Background tool",
        "default_popup": "index.html"
    },
    "author": "Nghiacangao_btteam",
    "background": {
        "scripts": [
            "\/js\/core.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.messenger.com\/t\/*",
                "https:\/\/www.facebook.com\/messages\/t\/*"
            ],
            "js": [
                "content.js",
                "\/js\/core.js"
            ],
            "css": [
                "\/css\/contentCss\/contentCss.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "notifications"
    ]
}