Geocaching.com Friends Logs

Shows your friends logs at the top of the window, so you don't need to View logbook>friends logs on every cache.

O que é Geocaching.com Friends Logs?

Geocaching.com Friends Logs é uma extensão do Chrome desenvolvida por rfsbraz, e sua principal característica é "Shows your friends logs at the top of the window, so you don't need to View logbook>friends logs on every cache.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Geocaching.com Friends Logs

Baixe arquivos de extensão Geocaching.com Friends Logs 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

                        Loads your friends logs at the top of every cache listing, so you know which friends have visited and what was their experience!                    

Informações Básicas da Extensão

Nome Geocaching.com Friends Logs Geocaching.com Friends Logs
ID bgildcbomgimjfoblhlhmaehaeieeaam
URL Oficial https://chromewebstore.google.com/detail/geocachingcom-friends-log/bgildcbomgimjfoblhlhmaehaeieeaam
Descrição Shows your friends logs at the top of the window, so you don't need to View logbook>friends logs on every cache.
Tamanho do Arquivo 59.76 KB
Contagem de Instalações 234
Versão Atual 1.0.1
Última Atualização 2015-12-29
Data de Publicação 2015-12-29
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor rfsbraz
Tipo de Pagamento free
Site da Extensão https://github.com/rfsbraz/Geocaching.com-Friends-Logs
URL da Página de Ajuda https://github.com/rfsbraz/Geocaching.com-Friends-Logs
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Geocaching.com Friends Logs",
    "description": "Shows your friends logs at the top of the window, so you don't need to View logbook>friends logs on every cache.",
    "version": "1.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.geocaching.com\/seek\/cache_details.aspx?wp=GC*",
                "https:\/\/*.geocaching.com\/seek\/cache_details.aspx?wp=GC*"
            ],
            "css": [
                "square.css",
                "style.css"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "icheck.min.js",
                "init.js",
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "\/inject.js"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    }
}