Youtube Timestamp Bookmarker

Bookmark the timestamp of a YouTube video to watch later

O que é Youtube Timestamp Bookmarker?

Youtube Timestamp Bookmarker é uma extensão do Chrome desenvolvida por Forever Impulse Tech, e sua principal característica é "Bookmark the timestamp of a YouTube video to watch later".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Youtube Timestamp Bookmarker

Baixe arquivos de extensão Youtube Timestamp Bookmarker 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 extension allows you to bookmark the timestamp of any YouTube video with one click. View your bookmarked YouTube videos by clicking the links in the extensions' pop-up window.

This will save you the time and effort of having to remember where you stopped watching a video. 

Features: 
- Search bar
- Update video titles
- Sort by favorited videos and date
- Light and dark mode toggle
- Remove single or multiple videos from bookmark

More features on the way!                    

Informações Básicas da Extensão

Nome Youtube Timestamp Bookmarker Youtube Timestamp Bookmarker
ID hdpcgcongdbbalkpifkdgmgifnoiddck
URL Oficial https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/hdpcgcongdbbalkpifkdgmgifnoiddck
Descrição Bookmark the timestamp of a YouTube video to watch later
Tamanho do Arquivo 27.81 KB
Contagem de Instalações 722
Versão Atual 2.1.2
Última Atualização 2022-11-17
Data de Publicação 2022-04-14
Classificação 4.75/5 Total de 4 Avaliações
Desenvolvedor Forever Impulse Tech
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Timestamp Bookmarker",
    "description": "Bookmark the timestamp of a YouTube video to watch later",
    "version": "2.1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/ytb_icon.png",
            "32": "\/images\/ytb_icon.png",
            "48": "\/images\/ytb_icon.png",
            "128": "\/images\/ytb_icon.png"
        }
    },
    "icons": {
        "16": "\/images\/ytb_icon.png",
        "32": "\/images\/ytb_icon.png",
        "48": "\/images\/ytb_icon.png",
        "128": "\/images\/ytb_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "js": [
                "options.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/bookmark.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}