Tinking - Scrapping Tool

Extract data from any website without code, just clicks

Wat is Tinking - Scrapping Tool?

Tinking - Scrapping Tool is een Chrome-extensie ontwikkeld door baptisteArno, en de belangrijkste functie is "Extract data from any website without code, just clicks".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Tinking - Scrapping Tool

Download Tinking - Scrapping Tool-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

                        This extension allows you to create a scraping recipe by directly selecting a page's elements with your mouse.                    

Basisinformatie over de Extensie

Naam Tinking - Scrapping Tool Tinking - Scrapping Tool
ID ibidcmokfddpkgdoobeihkfnajmodlkp
Officiële URL https://chromewebstore.google.com/detail/tinking-scrapping-tool/ibidcmokfddpkgdoobeihkfnajmodlkp
Beschrijving Extract data from any website without code, just clicks
Bestandsgrootte 2.06 MB
Aantal Installaties 796
Huidige Versie 0.1.1
Laatst Bijgewerkt 2021-03-24
Publicatiedatum 2021-02-26
Beoordeling 2.67/5 Totaal 3 Beoordelingen
Ontwikkelaar baptisteArno
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/baptisteArno/tinking
Help Pagina-URL https://github.com/baptisteArno/tinking/issues/new/choose
URL van de Privacybeleid Pagina https://github.com/baptisteArno/tinking/blob/master/privacy_policy.md
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tinking - Scrapping Tool",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Extract data from any website without code, just clicks",
    "icons": {
        "512": "logo512.png"
    },
    "browser_action": {
        "default_icon": "logo512.png"
    },
    "permissions": [
        "storage",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "background.js",
            ".\/jquery.min.js",
            ".\/popper.min.js",
            ".\/tippy.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                ".\/content.js",
                ".\/jquery.min.js",
                ".\/popper.min.js",
                ".\/tippy.min.js"
            ],
            "css": [
                ".\/index.css"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "index.html",
        "\/static\/*",
        "finder.js"
    ]
}