Picture-in-Picture for Youtube
Activates the Picture-in-Picture button and other useful features.
Vad är Picture-in-Picture for Youtube?
Picture-in-Picture for Youtube är en Chrome-tillägg utvecklad av Super Zombi, och dess huvudfunktion är "Activates the Picture-in-Picture button and other useful features.".
Tilläggsskärmbilder
Ladda ner Picture-in-Picture for Youtube-förlängningens CRX-fil
Ladda ner Picture-in-Picture for Youtube-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
Picture in Picture, MaxVolumer, Hide unwanted, Speed Control in Shorts, Rewind in Shorts, Full Screen in Shorts and etc. Grundläggande Information om Tillägg
| Namn | |
| ID | choemllnhinpmdednemjdpbaolkpnhck |
| Officiell webbadress | https://chromewebstore.google.com/detail/picture-in-picture-for-yo/choemllnhinpmdednemjdpbaolkpnhck |
| Beskrivning | Activates the Picture-in-Picture button and other useful features. |
| Filstorlek | 786 KB |
| Antal Installationer | 396 |
| Aktuell Version | 2.4.11 |
| Senast Uppdaterad | 2023-12-15 |
| Publiceringsdatum | 2023-08-30 |
| Betyg | 4.50/5 Totalt 4 Betyg |
| Utvecklare | Super Zombi |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/SuperZombi/Picture-in-Picture-for-Youtube |
| Hjälpsida URL | https://github.com/SuperZombi/Picture-in-Picture-for-Youtube/issues |
| Stödda Språk | en,ru,uk |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "2.4.11",
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"default_locale": "en",
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"script.js"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "menu\/options.html",
"default_icon": {
"19": "images\/icon-19.png",
"38": "images\/icon-38.png"
}
},
"icons": {
"128": "images\/icon-128.png"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"images\/*"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
],
"options_ui": {
"open_in_tab": false,
"page": "menu\/options.html"
},
"homepage_url": "https:\/\/github.com\/SuperZombi\/Picture-in-Picture-for-Youtube",
"minimum_chrome_version": "107.0.5304.87"
} | |