Youtube Subtitle Navigation
To help to navigate the video via subtitles
Vad är Youtube Subtitle Navigation?
Youtube Subtitle Navigation är en Chrome-tillägg utvecklad av 915522927, och dess huvudfunktion är "To help to navigate the video via subtitles".
Tilläggsskärmbilder
Ladda ner Youtube Subtitle Navigation-förlängningens CRX-fil
Ladda ner Youtube Subtitle Navigation-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
To show the youtube subtitles in a scroll view. And you can click the subtitle to navigate to any point of the video Grundläggande Information om Tillägg
| Namn | |
| ID | mnmncjbohjbmlcjfledohhdbjgmpdgmp |
| Officiell webbadress | https://chromewebstore.google.com/detail/youtube-subtitle-navigati/mnmncjbohjbmlcjfledohhdbjgmpdgmp |
| Beskrivning | To help to navigate the video via subtitles |
| Filstorlek | 950 KB |
| Antal Installationer | 49 |
| Aktuell Version | 0.0.0.2 |
| Senast Uppdaterad | 2022-06-14 |
| Publiceringsdatum | 2022-06-14 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | 915522927 |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/qq915522927/youtube-subtiltle-scroller-plugin |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Youtube Subtitle Navigation",
"version": "0.0.0.2",
"description": "To help to navigate the video via subtitles",
"icons": {
"32": "icons\/logo32.png",
"128": "icons\/logo128.png",
"512": "icons\/logo512.png"
},
"permissions": [
"https:\/\/*.youtube.com\/*"
],
"background": {
"service_worker": ".\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
".\/foreground.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"bootstrap-icons.woff",
"bootstrap-icons.woff2"
],
"matches": [
"https:\/\/*.youtube.com\/*"
]
}
]
} | |