Persistent Video/Audio Volume

Saves video and audio volume

Co to jest Persistent Video/Audio Volume?

Persistent Video/Audio Volume to rozszerzenie Chrome opracowane przez Pudding, a jego główną funkcją jest „Saves video and audio volume”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Persistent Video/Audio Volume

Pobierz pliki rozszerzeń Persistent Video/Audio Volume 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

                        I hate websites playing video with 100% volume especially while wearing headphones. This chrome extension enables you to sets the video volume for each website separately. Just set the volume in the top right corner to you preferred level.

- Facebook.com
- 9gag.com
- Bandcamp.com
- ... and many more                    

Podstawowe informacje o rozszerzeniu

Nazwa Persistent Video/Audio Volume Persistent Video/Audio Volume
ID ppoliijncpdcgddmfibmgnjhegceaadj
Oficjalny URL https://chromewebstore.google.com/detail/persistent-videoaudio-vol/ppoliijncpdcgddmfibmgnjhegceaadj
Opis Saves video and audio volume
Rozmiar pliku 264 KB
Liczba instalacji 2,786
Aktualna Wersja 0.10.1
Ostatnia Aktualizacja 2020-08-23
Data Publikacji 2020-02-09
Ocena 4.34/5 Łącznie 44 Oceny
Deweloper Pudding
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/puddingspudding/persistent-video-volume
Adres URL Strony Pomocy https://github.com/puddingspudding/persistent-video-volume
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Persistent Video\/Audio Volume",
    "version": "0.10.1",
    "manifest_version": 2,
    "description": "Saves video and audio volume",
    "permissions": [
        "storage",
        "tabs",
        ""
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png"
        }
    }
}