Content Finder

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

Cos'è Content Finder?

Content Finder è un'estensione di Chrome sviluppata da White Tower Software LLC, e la sua funzione principale è "The easiest way to identify the endpoint where the content is coming from.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Content Finder

Scarica i file di estensione Content Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                                            

Informazioni di Base sull'Estensione

Nome Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
URL Ufficiale https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
Descrizione The easiest way to identify the endpoint where the content is coming from.
Dimensione del File 884 KB
Conteggio Installazioni 100
Versione Corrente 1.1
Ultimo Aggiornamento 2018-03-07
Data di Pubblicazione 2018-03-07
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore White Tower Software LLC
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}