Slowed

Rediscover songs by slowing down YouTube videos. Get nostalgic with lo-fi filters. Sink on stunning visuals. ✓ Slow control ✓ 1…

What is Slowed?

Slowed is a Chrome extension developed by https://slowed.app, and its main feature is "Rediscover songs by slowing down YouTube videos. Get nostalgic with lo-fi filters. Sink on stunning visuals. ✓ Slow control ✓ 1…".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Slowed Extension CRX File

Download Slowed extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Rediscover songs by slowing down YouTube videos.
Get nostalgic with lo-fi filters.
Sink on stunning visuals.

✓ Slow control
✓ 1 Reverb modes
✓ 3 Video effects
🔒 Unlimited reverb modes
🔒 Unlimited video effects
🔒 Low pass mode
🔒 Lofi tape mode
🔒 Dark mode
🔒 Shortcuts                    

Extension Basic Information

Name Slowed Slowed
ID gljimdoibfdibckkdmcciihdkbmdjmbc
Official URL https://chromewebstore.google.com/detail/slowed/gljimdoibfdibckkdmcciihdkbmdjmbc
Description Rediscover songs by slowing down YouTube videos. Get nostalgic with lo-fi filters. Sink on stunning visuals. ✓ Slow control ✓ 1…
File Size 2.69 MB
Installation Count 2,000
Current Version 0.9.1
Last Updated 2024-02-18
Publish Date 2021-09-02
Rating 4.28/5 Total 43 Ratings
Developer https://slowed.app
Email [email protected]
Payment Type in_app
Extension Website https://www.slowed.app
Help Page URL https://www.slowed.app/help
Privacy Policy Page URL https://www.slowed.app/privacy
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slowed",
    "version": "0.9.1",
    "manifest_version": 3,
    "description": "",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "storage",
        "identity",
        "identity.email",
        "alarms"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*",
        "*:\/\/music.youtube.com\/*"
    ],
    "commands": {
        "low-pass-mode-toggle": {
            "description": "Low pass mode toggle"
        },
        "lofi-tape-mode-toggle": {
            "description": "Lofi tape mode toggle"
        },
        "speed-up": {
            "description": "Speed up"
        },
        "slow-down": {
            "description": "Slow down"
        },
        "slowed-toggle": {
            "description": "Activate the extension"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/music.youtube.com\/*"
            ],
            "js": [
                "global.js",
                "youtubeContent.js"
            ],
            "css": [
                "youtubeContent.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/slowed.app\/*",
                "*:\/\/www.slowed.app\/*"
            ],
            "js": [
                "global.js",
                "slowedContent.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "action": {
        "default_title": "Slowed",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "tapeHiss.mp3",
                "datorroReverb.js",
                "mp3Encoder.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.slowed.app\/*"
        ]
    }
}