Content Finder

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

Hvad er Content Finder?

Content Finder er en Chrome-udvidelse udviklet af White Tower Software LLC, og dens hovedfunktion er "The easiest way to identify the endpoint where the content is coming from.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Content Finder-udvidelses-CRX-fil

Download Content Finder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                                            

Grundlæggende oplysninger om udvidelsen

Navn Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
Officiel URL https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
Beskrivelse The easiest way to identify the endpoint where the content is coming from.
Filstørrelse 884 KB
Antal Installationer 100
Nuværende Version 1.1
Senest Opdateret 2018-03-07
Udgivelsesdato 2018-03-07
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler White Tower Software LLC
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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\/*"
    ]
}