Skip silence

Skip silent parts in videos and audio files.

Skip silence란 무엇입니까?

Skip silence은(는) https://vantezzen.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skip silent parts in videos and audio files."입니다.

확장 프로그램 스크린샷

screenshot

Skip silence 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        "Skip Silence" is a browser extension that allows you to autmatically skip parts of a video that are silent.
It is highly inspired by CaryKH's automatic on-the-fly video editing tool (https://www.youtube.com/watch?v=DQ8orIurGxw).

The extension works with most websites that use a HTML5 video or audio element to play, this includes YouTube and Instagram.

The full source code of this extension is available on https://github.com/vantezzen/skip-silence, if you find any issues or have a question please visit https://github.com/vantezzen/skip-silence/issues.

This extension needs the following permissions:
- "activeTab" => Access the currently active tab to monitor the video or audio source's volume and speed up and slow down.
- "storage" => The extension saves the settings you set using the browser storage

We do not collect or save any usage or other data about the users of this extension.                    

확장 프로그램 기본 정보

이름 Skip silence Skip silence
ID fhdmkhbefcbhakffdihhceaklaigdllh
공식 URL https://chromewebstore.google.com/detail/skip-silence/fhdmkhbefcbhakffdihhceaklaigdllh
설명 Skip silent parts in videos and audio files.
파일 크기 1.16 MB
설치 횟수 10,000
현재 버전 5.2.0
최근 업데이트 2023-08-07
출시 날짜 2020-06-07
평점 4.15/5 총 88 개의 평점
개발자 https://vantezzen.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/vantezzen/skip-silence
도움말 페이지 URL https://github.com/vantezzen/skip-silence/issues
개인정보 보호 정책 페이지 URL https://hollstein.io/browserprivacy
지원되는 언어 de,en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "16": "icon16.0b156848.png",
        "48": "icon48.0e126aab.png",
        "128": "icon128.1be0f90d.png"
    },
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "16": "icon16.0b156848.png",
            "48": "icon48.0e126aab.png"
        },
        "default_popup": "popup.ed2928d3.html"
    },
    "version": "5.2.0",
    "name": "Skip silence",
    "description": "Skip silent parts in videos and audio files.",
    "author": "vantezzen",
    "background": {
        "scripts": [
            "background.bf6ac6ca.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabCapture",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contents.e0de02e3.js"
            ],
            "all_frames": true,
            "css": []
        }
    ],
    "commands": {
        "toggle-enable": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "Enable\/disable Skip Silence for the current tab"
        },
        "toggle-command-bar": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Show\/hide the command bar"
        }
    },
    "default_locale": "en",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "web_accessible_resources": [
        "contents.180f05c9.css",
        "poppins-devanagari-400-normal.20fc2635.woff2",
        "poppins-all-400-normal.0298587e.woff",
        "poppins-latin-ext-400-normal.9f87e1a8.woff2",
        "poppins-latin-400-normal.53f07e8c.woff2",
        "poppins-devanagari-600-normal.5b72b0b7.woff2",
        "poppins-all-600-normal.29420735.woff",
        "poppins-latin-ext-600-normal.472ef062.woff2",
        "poppins-latin-600-normal.15391d77.woff2",
        "contents.bca2fe1a.png",
        "contents.33174bed.png",
        "contents.0c671a94.png",
        "contents.f8628e6b.png",
        "contents.90c17344.png"
    ]
}