Redirect Shorts
Redirects youtube shorts to the normal player
Vad är Redirect Shorts?
Redirect Shorts är en Chrome-tillägg utvecklad av manas.bejj, och dess huvudfunktion är "Redirects youtube shorts to the normal player".
Tilläggsskärmbilder
Ladda ner Redirect Shorts-förlängningens CRX-fil
Ladda ner Redirect Shorts-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
This extension replaces the "/shorts/" from the url with "watch?v=" to play your shorts video on the normal player which is more user friendly on a computer. Grundläggande Information om Tillägg
| Namn | |
| ID | lncinpfgcgmphkebnbfpogkgiaadphpi |
| Officiell webbadress | https://chromewebstore.google.com/detail/redirect-shorts/lncinpfgcgmphkebnbfpogkgiaadphpi |
| Beskrivning | Redirects youtube shorts to the normal player |
| Filstorlek | 32.03 KB |
| Antal Installationer | 2,945 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2022-03-03 |
| Publiceringsdatum | 2022-03-03 |
| Betyg | 4.32/5 Totalt 28 Betyg |
| Utvecklare | manas.bejj |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Redirect Shorts",
"version": "1.0",
"manifest_version": 3,
"description": "Redirects youtube shorts to the normal player",
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png",
"256": "256.png"
},
"host_permissions": [
"*:\/\/www.youtube.com\/shorts\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"yt.js"
],
"run_at": "document_start"
}
]
} | |