SponsorBlock for Odysee
Skip sponsored segments on Odysee videos imported from YouTube. Very basic plugin - only load and skip sponsored segments.
SponsorBlock for Odysee란 무엇입니까?
SponsorBlock for Odysee은(는) saznajnovo.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skip sponsored segments on Odysee videos imported from YouTube. Very basic plugin - only load and skip sponsored segments."입니다.
확장 프로그램 스크린샷
SponsorBlock for Odysee 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This plugin works only on videos imported (sync) from YouTube to Odysee. This is a very basic plugin whose purpose is only to load and skip sponsored segments. So, there are no advanced features like statistics, advanced settings, submitting segments...etc. There is a possibility that the plugin will not work with certain videos if the author has changed certain video information. The plugin uses SponsorBlock API. Changelog: v1.2.1 (Nov 24, 2022) - Added: do not skip clicked segments - Improved: some minor CSS adjustments v1.2 (Oct 7, 2022) - Added: different color for each segment on the progress bar (not customizable.. yet) - Improved: show the name of the segment even if the video has no thumbnail - Improved: better YT video ID detection - Fixed: notifications are triggered multiple times if the video is buffering v1.1 (Sep 29, 2022) - Added: show segment name above thumbnail v1.0 (Sep 28, 2022) - First version
확장 프로그램 기본 정보
이름 | SponsorBlock for Odysee |
ID | gdmldddlfnlmipdpobiaibalcbjjpmib |
공식 URL | https://chromewebstore.google.com/detail/sponsorblock-for-odysee/gdmldddlfnlmipdpobiaibalcbjjpmib |
설명 | Skip sponsored segments on Odysee videos imported from YouTube. Very basic plugin - only load and skip sponsored segments. |
파일 크기 | 41.02 KB |
설치 횟수 | 229 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2022-11-25 |
출시 날짜 | 2022-09-28 |
평점 | 4.00/5 총 3 개의 평점 |
개발자 | saznajnovo.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/stefanmm/sponsorblock-odysee |
도움말 페이지 URL | https://github.com/stefanmm/sponsorblock-odysee/issues |
개인정보 보호 정책 페이지 URL | https://www.saznajnovo.com/politika-privatnosti |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SponsorBlock for Odysee", "version": "1.2.1", "description": "Skip sponsored segments on Odysee videos imported from YouTube. Very basic plugin - only load and skip sponsored segments.", "manifest_version": 3, "options_ui": { "page": "options.html", "open_in_tab": false }, "action": { "name": "SponsorBlock for Odysee", "default_popup": "options.html", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } }, "content_scripts": [ { "js": [ "odyseesponsorskip.js" ], "css": [ "styles.css" ], "matches": [ "https:\/\/*.odysee.com\/*" ], "run_at": "document_start", "all_frames": true } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.odysee.com\/*" ], "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } } |