insta-d
adds a download link to instagram pages
Vad är insta-d?
insta-d är en Chrome-tillägg utvecklad av moldy530, och dess huvudfunktion är "adds a download link to instagram pages".
Tilläggsskärmbilder
Ladda ner insta-d-förlängningens CRX-fil
Ladda ner insta-d-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
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äggande Information om Tillägg
Namn | |
ID | bbofjkmnliejmigcepfilhpigbpnghdg |
Officiell webbadress | https://chrome.google.com/webstore/detail/insta-d/bbofjkmnliejmigcepfilhpigbpnghdg |
Beskrivning | adds a download link to instagram pages |
Filstorlek | 25.93 KB |
Antal Installationer | 120 |
Aktuell Version | 1.0.2 |
Senast Uppdaterad | 2019-01-30 |
Publiceringsdatum | 2019-01-30 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | moldy530 |
Betalningssätt | free |
Tilläggswebbplats | https://www.github.com/moldy530/insta-d |
Stödda Språk | 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" } } |