Content Finder

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

¿Qué es Content Finder?

Content Finder es una extensión de Chrome desarrollada por White Tower Software LLC, y su función principal es "The easiest way to identify the endpoint where the content is coming from.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Content Finder

Descarga archivos de extensión Content Finder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                                            

Información Básica de la Extensión

Nombre Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
URL Oficial https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
Descripción The easiest way to identify the endpoint where the content is coming from.
Tamaño del Archivo 884 KB
Cantidad de Instalaciones 100
Versión Actual 1.1
Última Actualización 2018-03-07
Fecha de Publicación 2018-03-07
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador White Tower Software LLC
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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\/*"
    ]
}