Youtube Longs
Shows gameplay footage under Youtube videos.
Vad är Youtube Longs?
Youtube Longs är en Chrome-tillägg utvecklad av simc.sambolec, och dess huvudfunktion är "Shows gameplay footage under Youtube videos.".
Tilläggsskärmbilder
Ladda ner Youtube Longs-förlängningens CRX-fil
Ladda ner Youtube Longs-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
Do you need overstimulation? This extension adds random gameplay footage under Youtube videos that you are watching to keep you entertained! Grundläggande Information om Tillägg
| Namn | |
| ID | inajamlogoahnbliabnogbcomnbiefbb |
| Officiell webbadress | https://chromewebstore.google.com/detail/youtube-longs/inajamlogoahnbliabnogbcomnbiefbb |
| Beskrivning | Shows gameplay footage under Youtube videos. |
| Filstorlek | 22.01 KB |
| Antal Installationer | 1,935 |
| Aktuell Version | 1.1.2 |
| Senast Uppdaterad | 2023-03-26 |
| Publiceringsdatum | 2023-02-23 |
| Betyg | 4.07/5 Totalt 27 Betyg |
| Utvecklare | simc.sambolec |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Youtube Longs",
"description": "Shows gameplay footage under Youtube videos.",
"version": "1.1.2",
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"js": [
"js\/functions.js",
"js\/insertVideo.js"
],
"css": [
"css\/embeded.css"
],
"matches": [
"*:\/\/www.youtube.com\/*"
],
"run_at": "document_end"
}
],
"icons": {
"128": "yt_longs.png"
},
"permissions": [
"tabs",
"storage"
],
"default_locale": "en",
"web_accessible_resources": [
{
"resources": [
"css\/width-fix.css"
],
"matches": [
"*:\/\/www.youtube.com\/*"
]
}
]
} | |