Tinking - Scrapping Tool

Extract data from any website without code, just clicks

Apa itu Tinking - Scrapping Tool?

Tinking - Scrapping Tool adalah ekstensi Chrome yang dikembangkan oleh baptisteArno, dan fitur utamanya adalah "Extract data from any website without code, just clicks".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Tinking - Scrapping Tool

Unduh file ekstensi Tinking - Scrapping Tool dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Tinking - Scrapping Tool Tinking - Scrapping Tool
ID ibidcmokfddpkgdoobeihkfnajmodlkp
URL Resmi https://chromewebstore.google.com/detail/tinking-scrapping-tool/ibidcmokfddpkgdoobeihkfnajmodlkp
Deskripsi Extract data from any website without code, just clicks
Ukuran File 2.06 MB
Jumlah Instalasi 796
Versi Saat Ini 0.1.1
Terakhir Diperbarui 2021-03-24
Tanggal Publikasi 2021-02-26
Penilaian 2.67/5 Total 3 Penilaian
Pengembang baptisteArno
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/baptisteArno/tinking
URL Halaman Bantuan https://github.com/baptisteArno/tinking/issues/new/choose
URL Halaman Kebijakan Privasi https://github.com/baptisteArno/tinking/blob/master/privacy_policy.md
Bahasa yang Didukung 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"
    ]
}