YouTube Watch Thumbnails
Display a thumbnail of the video next to the channel icon on the YouTube video playback page.
Vad är YouTube Watch Thumbnails?
YouTube Watch Thumbnails är en Chrome-tillägg utvecklad av mosunset, och dess huvudfunktion är "Display a thumbnail of the video next to the channel icon on the YouTube video playback page.".
Tilläggsskärmbilder
Ladda ner YouTube Watch Thumbnails-förlängningens CRX-fil
Ladda ner YouTube Watch Thumbnails-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
Click once on the extension icon and the thumbnail image hops up.
Clicking on an image opens the largest thumbnail image in a new tab. Grundläggande Information om Tillägg
| Namn | |
| ID | aobeafpjgdgakpagffmlkfeognaiigci |
| Officiell webbadress | https://chromewebstore.google.com/detail/youtube-watch-thumbnails/aobeafpjgdgakpagffmlkfeognaiigci |
| Beskrivning | Display a thumbnail of the video next to the channel icon on the YouTube video playback page. |
| Filstorlek | 113 KB |
| Antal Installationer | 4,804 |
| Aktuell Version | 3.3.1 |
| Senast Uppdaterad | 2023-09-02 |
| Publiceringsdatum | 2022-09-13 |
| Betyg | 5.00/5 Totalt 7 Betyg |
| Utvecklare | mosunset |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | id,en,fr,es,zh-CN,zh-TW,ja,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_Name__",
"description": "__MSG_Description__",
"version": "3.3.1",
"default_locale": "en",
"icons": {
"512": "img\/yicon.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "img\/yicon.png"
},
"permissions": [
"tabs",
"storage"
],
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"js\/jquery-3.6.0.min.js",
"js\/ycontent_script.js"
],
"css": [
"css\/ycontent_script.css"
],
"all_frames": true
}
]
} | |