Youtube Timestamp

Save youtube videos with exact timestamps for later.

Co je Youtube Timestamp?

Youtube Timestamp je rozšíření Chrome vyvinuté kirill17910, a jeho hlavní funkcí je „Save youtube videos with exact timestamps for later.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Youtube Timestamp

Stáhněte si soubory rozšíření Youtube Timestamp ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This is a small extension for saving YouTube videos with exact timestamp. You can find all your saved videos, by clicking on the extension. If you save a video that is already on your saved list, only the timestamp will update. You can right click on saved videos to delete them.

This is an open source project, and all source code can be found on GitHub. 
https://github.com/kotikkir9/Youtube 

Changes:
27/12/2022 - Added new animated delete button.                    

Základní Informace o Rozšíření

Název Youtube Timestamp Youtube Timestamp
ID ciognandfojfcelnokkgaapgmafciekl
Oficiální URL https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl
Popis Save youtube videos with exact timestamps for later.
Velikost souboru 11.57 KB
Počet instalací 179
Aktuální Verze 1.1
Poslední Aktualizace 2022-12-28
Datum Vydání 2022-05-24
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář kirill17910
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/kotikkir9/Youtube
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Timestamp",
    "description": "Save youtube videos with exact timestamps for later.",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/src\/background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/images\/icon.png",
            "32": ".\/images\/icon.png",
            "38": ".\/images\/icon.png",
            "128": ".\/images\/icon.png"
        }
    },
    "icons": {
        "16": ".\/images\/icon.png",
        "32": ".\/images\/icon.png",
        "38": ".\/images\/icon.png",
        "128": ".\/images\/icon.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ]
}