insta-d
adds a download link to instagram pages
Wat is insta-d?
insta-d is een Chrome-extensie ontwikkeld door moldy530, en de belangrijkste functie is "adds a download link to instagram pages".
Extensie Screenshots
Download het CRX-bestand van de extensie insta-d
Download insta-d-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | bbofjkmnliejmigcepfilhpigbpnghdg |
Officiële URL | https://chrome.google.com/webstore/detail/insta-d/bbofjkmnliejmigcepfilhpigbpnghdg |
Beschrijving | adds a download link to instagram pages |
Bestandsgrootte | 25.93 KB |
Aantal Installaties | 120 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2019-01-30 |
Publicatiedatum | 2019-01-30 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | moldy530 |
Betalingswijze | free |
Extensiewebsite | https://www.github.com/moldy530/insta-d |
Ondersteunde Talen | 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" } } |