Meet The World

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

O que é Meet The World?

Meet The World é uma extensão do Chrome desenvolvida por judsirera, e sua principal característica é "Save the location of your favorite Instagram pictures and visualize them in a map.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Meet The World

Baixe arquivos de extensão Meet The World no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Meet The World Meet The World
ID dnjacdhjmipmijabeoocdgaglpbkbkpp
URL Oficial https://chrome.google.com/webstore/detail/meet-the-world/dnjacdhjmipmijabeoocdgaglpbkbkpp
Descrição Save the location of your favorite Instagram pictures and visualize them in a map.
Tamanho do Arquivo 251 KB
Contagem de Instalações 15
Versão Atual 1.0.8
Última Atualização 2018-04-07
Data de Publicação 2018-04-07
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor judsirera
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://judithsirera.com/
Idiomas Suportados 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"
            ]
        }
    ]
}