Time Saver for YouTube

Display the time saved when the playback speed of a YouTube video is adjusted.

Vad är Time Saver for YouTube?

Time Saver for YouTube är en Chrome-tillägg utvecklad av Julian Acosta, och dess huvudfunktion är "Display the time saved when the playback speed of a YouTube video is adjusted.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Time Saver for YouTube-förlängningens CRX-fil

Ladda ner Time Saver for YouTube-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

                        Just change the speed and the amount of time you save will be displayed below the video. It's simple and blends in with YouTube's look and feel.                    

Grundläggande Information om Tillägg

Namn Time Saver for YouTube Time Saver for YouTube
ID nkfcgfkioefgclgcilgocbdnlhbfmcaf
Officiell webbadress https://chromewebstore.google.com/detail/time-saver-for-youtube/nkfcgfkioefgclgcilgocbdnlhbfmcaf
Beskrivning Display the time saved when the playback speed of a YouTube video is adjusted.
Filstorlek 5.33 KB
Antal Installationer 38
Aktuell Version 0.0.0.3
Senast Uppdaterad 2023-03-17
Publiceringsdatum 2020-07-02
Utvecklare Julian Acosta
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Time Saver for YouTube",
    "version": "0.0.0.3",
    "description": "Display the time saved when the playback speed of a YouTube video is adjusted.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "youtube-script.js"
    ],
    "permissions": [
        "*:\/\/www.youtube.com\/*"
    ]
}