IG Downloader
Downloads videos and images from ig
Hvad er IG Downloader?
IG Downloader er en Chrome-udvidelse udviklet af matthewlam.js, og dens hovedfunktion er "Downloads videos and images from ig".
Udvidelsesskærmbilleder
Download IG Downloader-udvidelses-CRX-fil
Download IG Downloader-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
After installing the extension, navigate to IG's website in a new tab and log in. From there you have the following options:
Download regular IG posts images/videos:
-click on a link to a post anywhere IG to open it.
-a confirm dialog should pop up asking if you want to download the files.
Download IG stories:
-click on a story to open it in the story viewer.
-click start download button on top left of page and stories should start downloading as they are played.
-click stop download button on top left of page to stop downloading. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | gelbcoobaindiodaajafdoibjohgnnda |
| Officiel URL | https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda |
| Beskrivelse | Downloads videos and images from ig |
| Filstørrelse | 10.96 KB |
| Antal Installationer | 2,000 |
| Nuværende Version | 1.1.3 |
| Senest Opdateret | 2019-07-20 |
| Udgivelsesdato | 2019-07-20 |
| Bedømmelse | 3.00/5 Samlet 6 Bedømmelser |
| Udvikler | matthewlam.js |
| Betalingsmetode | free |
| Udvidelseswebsted | http://www.github.com/matthewlamdotjs |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "IG Downloader",
"description": "Downloads videos and images from ig",
"version": "1.1.3",
"author": "Matthew Lam",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*.instagram.com\/*"
],
"js": [
"posts.js"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/*.instagram.com\/*"
],
"js": [
"stories.js"
],
"run_at": "document_end"
}
]
} | |