instaGrab Photos

Single click grab Instagram, Facebook, and Web Pictures. Download and theme them as Instagram Background Image

instaGrab Photos란 무엇입니까?

instaGrab Photos은(는) https://codeniklabs.com/projects/instagrab에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Single click grab Instagram, Facebook, and Web Pictures. Download and theme them as Instagram Background Image"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

instaGrab Photos 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        instaGrab can perform four functions with a single click:
1) Grab photos:  
    Any Instagram photo, Facebook photo, and most web photos as long as they are https:// web address
2) Theme Photos: 
    Use grabbed photos as your custom Instagram background theme, replacing the white background with your photos.  
3) Download Photos
    Download selected photos by simply clicking on its thumbnail or download all photos in your grabbed collection by clicking on one button.
4) Share Photos
    Your grabbed collections are the links to the actual photos, so your export import file size is very small and easy to share via email or messaging.  For example, a grabbed collection of 500 photo links may be less than 1% the size of a just one photo.


----------------------------

This extension is NOT associated with Instagram

By using this Extension you agree to the Terms and Conditions listed below:

https://codeniklabs.com/projects/instagrab/terms.html                    

확장 프로그램 기본 정보

이름 instaGrab Photos instaGrab Photos
ID icmghgdelecccpbokaiekpbimchcfnpk
공식 URL https://chromewebstore.google.com/detail/instagrab-photos/icmghgdelecccpbokaiekpbimchcfnpk
설명 Single click grab Instagram, Facebook, and Web Pictures. Download and theme them as Instagram Background Image
파일 크기 90.71 KB
설치 횟수 214
현재 버전 0.0.0.24
최근 업데이트 2019-11-21
출시 날짜 2019-11-21
평점 4.50/5 총 6 개의 평점
개발자 https://codeniklabs.com/projects/instagrab
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://codeniklabs.com/projects/instagrab
도움말 페이지 URL https://codeniklabs.com/projects/instagrab
개인정보 보호 정책 페이지 URL https://hudektech.com/projects/breakout
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "instaGrab Photos",
    "short_name": "Grab Photos from Instagram, Facebook, and Web",
    "version": "0.0.0.24",
    "description": "Single click grab Instagram, Facebook, and Web Pictures. Download and theme them as Instagram Background Image",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Theme, Download, and Share Photos",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/jsCommon.js",
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/jsCommon.js",
                "content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/jquery.js",
        "img\/icon16.png",
        "img\/icon48.png",
        "img\/icon128.png"
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "notifications",
        "activeTab",
        "downloads"
    ]
}