Sponsor Skipper
Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.
Co to jest Sponsor Skipper?
Sponsor Skipper to rozszerzenie Chrome opracowane przez https://zackbanack.com, a jego główną funkcją jest „Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Sponsor Skipper
Pobierz pliki rozszerzeń Sponsor Skipper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.
*Notes:*
- This extension requires use of YouTube closed captions to work
- Tab must be in focus
How it works:
- Ever x seconds, the extension will read the video captions
- If a trigger word is found in close proximity to a form of the word "sponsor", then we enter into a sponsored segment
- While in a sponsored segment, if the trigger word is re-encountered or we encounter a word from the in-ad list, keep skimming through the video
GitHub: https://github.com/zbanack/youtube-sponsor-skipper/ Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jfdipdnjgckbpkomodlcfhmkencihepc |
| Oficjalny URL | https://chromewebstore.google.com/detail/sponsor-skipper/jfdipdnjgckbpkomodlcfhmkencihepc |
| Opis | Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words. |
| Rozmiar pliku | 20.04 KB |
| Liczba instalacji | 232 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2019-11-26 |
| Data Publikacji | 2019-11-25 |
| Ocena | 1.00/5 Łącznie 1 Oceny |
| Deweloper | https://zackbanack.com |
| Typ Płatności | free |
| Strona Rozszerzenia | https://www.zackbanack.com |
| Adres URL Strony Pomocy | https://www.paypal.me/zackbanack |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Sponsor Skipper",
"short_name": "Skipper",
"description": "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.",
"version": "1.1",
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtube.com\/*",
"http:\/\/youtube.com\/*",
"http:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"permissions": [
"activeTab",
"storage"
],
"icons": {
"32": "\/images\/icons-32.png",
"192": "\/images\/icons-192.png",
"512": "\/images\/icons-512.png"
},
"browser_action": {
"default_title": "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.",
"default_icon": "\/images\/icons-32.png",
"default_popup": "index.html"
},
"manifest_version": 2
} | |