Volume Scroll

Scrollable volume for any video on the internet

Τι είναι το Volume Scroll;

Το Volume Scroll είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Fredrik Wilhelmsen, και η κύρια λειτουργία του είναι "Scrollable volume for any video on the internet".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Volume Scroll

Λήψη αρχείων επέκτασης Volume Scroll σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Scroll to easily change the volume of any video on the internet.

Features:
⭐Scroll to change the volume of any video.

⭐Scroll beyond 100% audio! 
    ⭐ (Current max is 500%)

⭐ Custom key to toggle it on only when you want to.
    ⭐ Can be inverted.

⭐ Display the current volume on screen.
    ⭐ Can be displayed next to your mouse.
    ⭐ Choose from four different pre-set positions, or create your own position.

⭐ Optional hotkey for muting / unmuting a video.

⭐ Optional fullscreen only mode.

⭐ Custom blacklist for specific websites.

⭐ Supports Youtube Music

⭐ Set a default volume level for a video.

Take it to the next level, and scroll to change the settings in the extension!

Changelog:

v1.2:
- Added custom blacklist toggle.
- Added modifier key to control scrolling.
  - (Some keys have default behavior with chrome, don't expect those to work properly)
  - (Some of these keys include: ALT, CTRL, TAB, SHIFT)
- Added scrolling to the settings sliders.

v1.3:
- Overlay now takes page scroll into account. (Overlay should be visible more of the time)
- Added toggle to overlay position. Choose between relative to mouse or relative to video.
- The settings in the menu now have descriptions when hovering over them.
- Added toggle for precise scrolling. Increment / decrement by 1 if the volume is below the set increment.
- Added toggle to invert the modifier key. If inverted the page will forcibly scroll when holding the modifier key.
- Settings should now take effect immediately. You should no longer have to refresh the page.

v1.3.1:
- Added support for videos embedded in iFrames.
- Added support for Youtube Music. 
  - Scroll over the song thumbnail or the player bar to change the volume.
  - (Some problems exist, blacklist site if you encounter them and find them annoying)
    - (Has been improved, and I will continue to work on it)

v1.4
- Modifier key now support mouse buttons.
- Changed default modifier key to "Right Mouse".
- Simplified the settings menu.

v1.4.1
- General improvements to scrolling.

v1.4.2
- Removed Cookie usage.

v1.4.3
- Fixed overlay animation on Youtube.

v2.0.0
- Reworked popup menu. Settings are now categorized and hidden in their own menus.
- Added an optional hotkey to toggle the audio of a video on or off.
- Added a fullscreen only mode to volume scrolling.
- Completely reworked how you choose where the overlay is positioned on the video.
  - You can now choose from four pre-set positions.
  - Or you can create your own custom position.
  - Alternatively you can have the overlay follow your mouse.
- Fixed overlay while in fullscreen.
- Added links to leave a review, as well as a link to my Ko-Fi.

v2.0.1
- Fixed bug with middle mouse button as modifier key.
- Fixed bug where the overlay could vanish.

v2.1.0
- Added support for volumes over 100%.
- Fix to scroll on videos without audio.

v2.1.1
- Fixed uncapped audio on many sites.

v2.1.1
- Unbroke the extension on certain sites such as streamable. Disable uncapped audio if you still experience issues on such sites.

v2.1.2
- Improved uncapped audio.

v2.1.3
- Fix for the new reddit player.

v2.1.4
- Fixed it so that default behaviour is not stopped when toggle mute key or modifier key is used while disabled.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Volume Scroll Volume Scroll
ID gkmagiadkkhdilnaicdnngcjhmhaeaoh
Επίσημο URL https://chromewebstore.google.com/detail/volume-scroll/gkmagiadkkhdilnaicdnngcjhmhaeaoh
Περιγραφή Scrollable volume for any video on the internet
Μέγεθος Αρχείου 29.17 KB
Αριθμός Εγκαταστάσεων 992
Τρέχουσα Έκδοση 2.1.4
Τελευταία Ενημέρωση 2023-05-05
Ημερομηνία Δημοσίευσης 2021-09-13
Αξιολόγηση 4.61/5 Συνολικά 23 Αξιολογήσεις
Προγραμματιστής Fredrik Wilhelmsen
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Volume Scroll",
    "description": "Scrollable volume for any video on the internet",
    "version": "2.1.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "\/images\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "css": [
                "contentStyle.css"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "128": "\/images\/128.png"
    }
}