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文件
下載SponsorBlock for Odysee擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | gdmldddlfnlmipdpobiaibalcbjjpmib |
| 官方網址 | 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"
}
} | |