Youtube Timestamp

Save youtube videos with exact timestamps for later.

O que é Youtube Timestamp?

Youtube Timestamp é uma extensão do Chrome desenvolvida por kirill17910, e sua principal característica é "Save youtube videos with exact timestamps for later.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Youtube Timestamp

Baixe arquivos de extensão Youtube Timestamp no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Youtube Timestamp Youtube Timestamp
ID ciognandfojfcelnokkgaapgmafciekl
URL Oficial https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl
Descrição Save youtube videos with exact timestamps for later.
Tamanho do Arquivo 11.57 KB
Contagem de Instalações 179
Versão Atual 1.1
Última Atualização 2022-12-28
Data de Publicação 2022-05-24
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor kirill17910
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/kotikkir9/Youtube
Idiomas Suportados 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\/*"
    ]
}