Content Finder

The easiest way to identify the endpoint where the content is coming from.

O que é Content Finder?

Content Finder é uma extensão do Chrome desenvolvida por White Tower Software LLC, e sua principal característica é "The easiest way to identify the endpoint where the content is coming from.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Content Finder

Baixe arquivos de extensão Content Finder 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

                                            

Informações Básicas da Extensão

Nome Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
URL Oficial https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
Descrição The easiest way to identify the endpoint where the content is coming from.
Tamanho do Arquivo 884 KB
Contagem de Instalações 100
Versão Atual 1.1
Última Atualização 2018-03-07
Data de Publicação 2018-03-07
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor White Tower Software LLC
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Content Finder",
    "description": "The easiest way to identify the endpoint where the content is coming from.",
    "version": "1.1",
    "author": "White Tower Software LLC",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Content Finder"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "css": [
                "main.css",
                "fonts\/css\/fontawesome-all.min.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "inject.js",
        "fonts\/webfonts\/*"
    ]
}