Content Finder

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

Wat is Content Finder?

Content Finder is een Chrome-extensie ontwikkeld door White Tower Software LLC, en de belangrijkste functie is "The easiest way to identify the endpoint where the content is coming from.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Content Finder

Download Content Finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
Officiële URL https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
Beschrijving The easiest way to identify the endpoint where the content is coming from.
Bestandsgrootte 884 KB
Aantal Installaties 100
Huidige Versie 1.1
Laatst Bijgewerkt 2018-03-07
Publicatiedatum 2018-03-07
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar White Tower Software LLC
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}