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文件

下載Meet The World擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}