Slowed

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

Cos'è Slowed?

Slowed è un'estensione di Chrome sviluppata da https://slowed.app, e la sua funzione principale è "Rediscover songs by slowing down YouTube videos. Get nostalgic with lo-fi filters. Sink on stunning visuals. ✓ Slow control ✓ 1…".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Slowed

Scarica i file di estensione Slowed in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Slowed Slowed
ID gljimdoibfdibckkdmcciihdkbmdjmbc
URL Ufficiale https://chromewebstore.google.com/detail/slowed/gljimdoibfdibckkdmcciihdkbmdjmbc
Descrizione Rediscover songs by slowing down YouTube videos. Get nostalgic with lo-fi filters. Sink on stunning visuals. ✓ Slow control ✓ 1…
Dimensione del File 2.69 MB
Conteggio Installazioni 2,000
Versione Corrente 0.9.1
Ultimo Aggiornamento 2024-02-18
Data di Pubblicazione 2021-09-02
Valutazione 4.28/5 Totale 43 Valutazioni
Sviluppatore https://slowed.app
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://www.slowed.app
URL della Pagina di Aiuto https://www.slowed.app/help
URL della Pagina della Politica sulla Privacy https://www.slowed.app/privacy
Lingue Supportate 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\/*"
        ]
    }
}