Poe.com Resizer

Better layout for Poe.com and allow for resizable dialog area

Co to jest Poe.com Resizer?

Poe.com Resizer to rozszerzenie Chrome opracowane przez Hayden Chiu, a jego główną funkcją jest „Better layout for Poe.com and allow for resizable dialog area”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Poe.com Resizer

Pobierz pliki rozszerzeń Poe.com Resizer 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

                        Poe.com Resizer is a Chrome extension that enables interactive resizing of the chat area on Poe.com. It also provide options on extension popup for hiding the scrollbars base on user preference on latest version of Chrome.                    

Podstawowe informacje o rozszerzeniu

Nazwa Poe.com Resizer Poe.com Resizer
ID pkkdjnobfambcickbmbmpgejnelalmjo
Oficjalny URL https://chromewebstore.google.com/detail/poecom-resizer/pkkdjnobfambcickbmbmpgejnelalmjo
Opis Better layout for Poe.com and allow for resizable dialog area
Rozmiar pliku 17.93 KB
Liczba instalacji 354
Aktualna Wersja 1.6.1
Ostatnia Aktualizacja 2024-02-28
Data Publikacji 2023-05-28
Ocena 5.00/5 Łącznie 8 Oceny
Deweloper Hayden Chiu
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.freeprivacypolicy.com/live/d062494e-dae6-4d19-868a-afbf63ea5c71
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Poe.com Resizer",
    "version": "1.6.1",
    "description": "Better layout for Poe.com and allow for resizable dialog area",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.poe.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "client.js"
            ],
            "matches": [
                "https:\/\/*.poe.com\/*"
            ]
        }
    ]
}