Mover.uz Video Downloader
Google Chrome extension for adding possibility to directly load video files from https://mover.uz
Hvad er Mover.uz Video Downloader?
Mover.uz Video Downloader er en Chrome-udvidelse udviklet af shmutalov, og dens hovedfunktion er "Google Chrome extension for adding possibility to directly load video files from https://mover.uz".
Udvidelsesskærmbilleder
Download Mover.uz Video Downloader-udvidelses-CRX-fil
Download Mover.uz Video Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Позволяет скачивать видео из видеохостинга mover.uz Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | eagbbfkmjoblikpblbmejmblfhokbpaa |
| Officiel URL | https://chromewebstore.google.com/detail/moveruz-video-downloader/eagbbfkmjoblikpblbmejmblfhokbpaa |
| Beskrivelse | Google Chrome extension for adding possibility to directly load video files from https://mover.uz |
| Filstørrelse | 15.38 KB |
| Antal Installationer | 2,265 |
| Nuværende Version | 0.3.0 |
| Senest Opdateret | 2021-08-02 |
| Udgivelsesdato | 2017-11-27 |
| Bedømmelse | 3.83/5 Samlet 12 Bedømmelser |
| Udvikler | shmutalov |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/shmutalov/mover-uz-chrome-extension |
| Hjælpeside-URL | https://github.com/shmutalov/mover-uz-chrome-extension/issues |
| Understøttede Sprog | ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Mover.uz Video Downloader",
"version": "0.3.0",
"manifest_version": 3,
"description": "Google Chrome extension for adding possibility to directly load video files from https:\/\/mover.uz",
"homepage_url": "https:\/\/github.com\/shmutalov\/mover-uz-chrome-extension",
"author": "Sherzod Mutalov",
"icons": {
"16": "icons\/muvd16.png",
"32": "icons\/muvd32.png",
"48": "icons\/muvd48.png",
"64": "icons\/muvd64.png",
"128": "icons\/muvd128.png"
},
"host_permissions": [
"*:\/\/*.mover.uz\/"
],
"permissions": [
"downloads"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.mover.uz\/*"
],
"js": [
"src\/inject.js"
],
"run_at": "document_end"
}
],
"externally_connectable": {
"matches": [
"*:\/\/*.mover.uz\/*"
]
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icons\/muvd16.png",
"32": "icons\/muvd32.png",
"48": "icons\/muvd48.png",
"64": "icons\/muvd64.png",
"128": "icons\/muvd128.png"
},
"default_title": "Mover.Uz Video Downloader"
}
} | |