Tinking - Scrapping Tool

Extract data from any website without code, just clicks

What is Tinking - Scrapping Tool?

Tinking - Scrapping Tool is a Chrome extension developed by baptisteArno, and its main feature is "Extract data from any website without code, just clicks".

Extension Screenshots

screenshot
screenshot
screenshot

Download Tinking - Scrapping Tool Extension CRX File

Download Tinking - Scrapping Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Tinking - Scrapping Tool Tinking - Scrapping Tool
ID ibidcmokfddpkgdoobeihkfnajmodlkp
Official URL https://chromewebstore.google.com/detail/tinking-scrapping-tool/ibidcmokfddpkgdoobeihkfnajmodlkp
Description Extract data from any website without code, just clicks
File Size 2.06 MB
Installation Count 796
Current Version 0.1.1
Last Updated 2021-03-24
Publish Date 2021-02-26
Rating 2.67/5 Total 3 Ratings
Developer baptisteArno
Email [email protected]
Payment Type free
Extension Website https://github.com/baptisteArno/tinking
Help Page URL https://github.com/baptisteArno/tinking/issues/new/choose
Privacy Policy Page URL https://github.com/baptisteArno/tinking/blob/master/privacy_policy.md
Supported Languages 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"
    ]
}