Persistent Video/Audio Volume

Saves video and audio volume

Vad är Persistent Video/Audio Volume?

Persistent Video/Audio Volume är en Chrome-tillägg utvecklad av Pudding, och dess huvudfunktion är "Saves video and audio volume".

Tilläggsskärmbilder

screenshot

Ladda ner Persistent Video/Audio Volume-förlängningens CRX-fil

Ladda ner Persistent Video/Audio Volume-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Persistent Video/Audio Volume Persistent Video/Audio Volume
ID ppoliijncpdcgddmfibmgnjhegceaadj
Officiell webbadress https://chromewebstore.google.com/detail/persistent-videoaudio-vol/ppoliijncpdcgddmfibmgnjhegceaadj
Beskrivning Saves video and audio volume
Filstorlek 264 KB
Antal Installationer 2,786
Aktuell Version 0.10.1
Senast Uppdaterad 2020-08-23
Publiceringsdatum 2020-02-09
Betyg 4.34/5 Totalt 44 Betyg
Utvecklare Pudding
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/puddingspudding/persistent-video-volume
Hjälpsida URL https://github.com/puddingspudding/persistent-video-volume
Stödda Språk 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"
        }
    }
}