Foca Files Finder

Scan the site and analyze the files with Foca!

Was ist Foca Files Finder?

Foca Files Finder ist eine Chrome-Erweiterung, die von Telefonica Tech entwickelt wurde, und ihr Hauptmerkmal ist "Scan the site and analyze the files with Foca!".

Erweiterungsscreenshots

screenshot
screenshot

Foca Files Finder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Foca Files Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        # Foca Files Finder

Foca Files Finder uses Bing to search for documents hosted in a domain.

This extension is quite simple:

* Push a browser button to scan a site.
* The plugin will show all documents hosted in a domain, thanks to Bing technology.
* Export, if you want to, results to a file and use them in FOCA.
* Use a setting window to customize your searchs.

Future versions will send report to FOCA automatically.                    

Grundlegende Informationen zur Erweiterung

Name Foca Files Finder Foca Files Finder
ID mhobefinhafbleanihidiifaedcceoij
Offizielle URL https://chromewebstore.google.com/detail/foca-files-finder/mhobefinhafbleanihidiifaedcceoij
Beschreibung Scan the site and analyze the files with Foca!
Dateigröße 464 KB
Installationsanzahl 1,319
Aktuelle Version 1.0
Letztes Update 2018-12-22
Veröffentlichungsdatum 2018-12-18
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Telefonica Tech
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Foca Files Finder",
    "version": "1.0",
    "background": {
        "scripts": [
            "popup\/autoscan.js"
        ]
    },
    "description": "Scan the site and analyze the files with Foca!",
    "icons": {
        "48": "icons\/foca.png"
    },
    "content_scripts": [
        {
            "js": [
                "popup\/focafiles.js",
                "popup\/jquery-1.12.4.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "popup\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_icon": {
            "32": "icons\/foca.png"
        },
        "default_title": "Foca Files Finder",
        "default_popup": "popup\/focafiles.html"
    }
}