Hide video duration

Hide video duration on video services to avoid spoilers

O que é Hide video duration?

Hide video duration é uma extensão do Chrome desenvolvida por https://sokolov.cc, e sua principal característica é "Hide video duration on video services to avoid spoilers".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Hide video duration

Baixe arquivos de extensão Hide video duration 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

                        Hide the duration of YouTube videos to prevent spoiling the ending. In particular, a Let’s Play video of a rogue-like coming to an end suggests the player will make a crucial mistake soon.

With this extension a duration can be hidden at the start of a video manually, and also all videos matching a particular title can have their durations hidden automatically.                    

Informações Básicas da Extensão

Nome Hide video duration Hide video duration
ID jkgpcmmhejecphgdnihjfgmdpdkhgpke
URL Oficial https://chromewebstore.google.com/detail/hide-video-duration/jkgpcmmhejecphgdnihjfgmdpdkhgpke
Descrição Hide video duration on video services to avoid spoilers
Tamanho do Arquivo 1.78 MB
Contagem de Instalações 990
Versão Atual 1.0.2
Última Atualização 2022-11-21
Data de Publicação 2019-03-22
Classificação 4.20/5 Total de 15 Avaliações
Desenvolvedor https://sokolov.cc
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/denis-sokolov/hide-video-duration
URL da Página de Ajuda https://github.com/denis-sokolov/hide-video-duration/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "version": "1.0.2",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "src\/icons\/300.png",
        "48": "src\/icons\/300.png",
        "128": "src\/icons\/300.png"
    },
    "background": {
        "scripts": [
            "src\/page-action-rules.js",
            "src\/hide-automatically.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "src\/toolbar\/popup.html"
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "optional_permissions": [
        "http:\/\/www.youtube.com\/",
        "https:\/\/www.youtube.com\/"
    ],
    "options_ui": {
        "page": "src\/options\/index.html",
        "chrome_style": true
    }
}