Photo Downloader
Save images from social photo sites.
Co to jest Photo Downloader?
Photo Downloader to rozszerzenie Chrome opracowane przez Mihai Parparita, a jego główną funkcją jest „Save images from social photo sites.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Photo Downloader
Pobierz pliki rozszerzeń Photo Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Chrome extension to help with downloading of images from social photo sites.
* Uses minimal Chrome extension permissions (by using the activeTab option)
* Uses minimal Chrome resources (via the the declarativeContent API)
* Generates filenames based on the caption of the image
Currently only works on permalink pages. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | akgbekdpgegfglbmldaljbeihfcgbofl |
| Oficjalny URL | https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl |
| Opis | Save images from social photo sites. |
| Rozmiar pliku | 12.23 KB |
| Liczba instalacji | 5,372 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2023-07-20 |
| Data Publikacji | 2018-01-29 |
| Ocena | 2.00/5 Łącznie 5 Oceny |
| Deweloper | Mihai Parparita |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/mihaip/instagram-downloader |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"name": "Photo Downloader",
"description": "Save images from social photo sites.",
"icons": {
"128": "icon-128.png"
},
"page_action": {
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png"
},
"default_title": "Download Image"
},
"permissions": [
"declarativeContent",
"activeTab",
"downloads"
],
"version": "1.1"
} | |