DirectFN web scraping tools

This extension demonstrates a web scraping tools for DirectFN.

Was ist DirectFN web scraping tools?

DirectFN web scraping tools ist eine Chrome-Erweiterung, die von dfn.eg.dev entwickelt wurde, und ihr Hauptmerkmal ist "This extension demonstrates a web scraping tools for DirectFN.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

DirectFN web scraping tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie DirectFN web scraping tools-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

                        This web scraping tools is used to scrape the web pages dynamically                    

Grundlegende Informationen zur Erweiterung

Name DirectFN web scraping tools DirectFN web scraping tools
ID hcaobdjpbhcoahmmdapbmifecjebakij
Offizielle URL https://chromewebstore.google.com/detail/directfn-web-scraping-too/hcaobdjpbhcoahmmdapbmifecjebakij
Beschreibung This extension demonstrates a web scraping tools for DirectFN.
Dateigröße 81.5 KB
Installationsanzahl 195
Aktuelle Version 1.2
Letztes Update 2015-01-20
Veröffentlichungsdatum 2015-01-20
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler dfn.eg.dev
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DirectFN web scraping tools",
    "short_name": "DFN web scraping tools",
    "description": "This extension demonstrates a web scraping tools for DirectFN.",
    "version": "1.2",
    "permissions": [
        "https:\/\/*\/",
        "http:\/\/*\/",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "popup.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "onloadscript.js"
            ],
            "css": [
                "highlight.css"
            ]
        }
    ]
}