Photo Downloader
Save images from social photo sites.
Vad är Photo Downloader?
Photo Downloader är en Chrome-tillägg utvecklad av Mihai Parparita, och dess huvudfunktion är "Save images from social photo sites.".
Tilläggsskärmbilder
Ladda ner Photo Downloader-förlängningens CRX-fil
Ladda ner Photo Downloader-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
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.
Grundläggande Information om Tillägg
Namn | Photo Downloader |
ID | akgbekdpgegfglbmldaljbeihfcgbofl |
Officiell webbadress | https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl |
Beskrivning | Save images from social photo sites. |
Filstorlek | 12.23 KB |
Antal Installationer | 5,372 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2023-07-20 |
Publiceringsdatum | 2018-01-29 |
Betyg | 2.00/5 Totalt 5 Betyg |
Utvecklare | Mihai Parparita |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/mihaip/instagram-downloader |
Stödda Språk | 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" } |