insta-d
adds a download link to instagram pages
Hvad er insta-d?
insta-d er en Chrome-udvidelse udviklet af moldy530, og dens hovedfunktion er "adds a download link to instagram pages".
Udvidelsesskærmbilleder
Download insta-d-udvidelses-CRX-fil
Download insta-d-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
Simple extension that allows you to download instagram images as you browse them. Just click on an image to open up its modal on someone's feed and click the download icon next to the share icon and it will download the highest quality available.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | bbofjkmnliejmigcepfilhpigbpnghdg |
Officiel URL | https://chrome.google.com/webstore/detail/insta-d/bbofjkmnliejmigcepfilhpigbpnghdg |
Beskrivelse | adds a download link to instagram pages |
Filstørrelse | 25.93 KB |
Antal Installationer | 120 |
Nuværende Version | 1.0.2 |
Senest Opdateret | 2019-01-30 |
Udgivelsesdato | 2019-01-30 |
Bedømmelse | 3.00/5 Samlet 2 Bedømmelser |
Udvikler | moldy530 |
Betalingsmetode | free |
Udvidelseswebsted | https://www.github.com/moldy530/insta-d |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "insta-d", "description": "adds a download link to instagram pages", "version": "1.0.2", "permissions": [ "activeTab" ], "web_accessible_resources": [ "images\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "script.js" ] } ], "page_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "64": "images\/icon_64.png" }, "default_title": "insta-d" }, "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "64": "images\/icon_64.png", "128": "images\/icon_128.png" } } |