Meet The World

Save the location of your favorite Instagram pictures and visualize them in a map.

Meet The World란 무엇입니까?

Meet The World은(는) judsirera에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save the location of your favorite Instagram pictures and visualize them in a map."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Meet The World 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Meet The World is an app for saving the location of your favorite Instagram pictures. Then, they are displayed on a map, allowing the user to navigate through. Save your spots with the google chrome extension and visualize it them on the website                    

확장 프로그램 기본 정보

이름 Meet The World Meet The World
ID dnjacdhjmipmijabeoocdgaglpbkbkpp
공식 URL https://chrome.google.com/webstore/detail/meet-the-world/dnjacdhjmipmijabeoocdgaglpbkbkpp
설명 Save the location of your favorite Instagram pictures and visualize them in a map.
파일 크기 251 KB
설치 횟수 15
현재 버전 1.0.8
최근 업데이트 2018-04-07
출시 날짜 2018-04-07
평점 5.00/5 총 3 개의 평점
개발자 judsirera
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://judithsirera.com/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet The World",
    "short_name": "meettheworld",
    "version": "1.0.8",
    "manifest_version": 2,
    "description": "Save the location of your favorite Instagram pictures and visualize them in a map.",
    "homepage_url": "http:\/\/meettheworld.judithsirera.com\/",
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon_19.png",
        "default_title": "InstaTravel",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "chrome:\/\/favicon\/",
        "contentSettings",
        "tabs",
        "cookies",
        "webRequest",
        "*:\/\/*.instagram.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "js\/htmlElements.js",
                "js\/firebase.js",
                "js\/firebaseManager.js",
                "js\/instagramManager.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}