Tinking - Scrapping Tool

Extract data from any website without code, just clicks

Tinking - Scrapping Toolとは何ですか?

Tinking - Scrapping ToolはbaptisteArnoによって開発されたChromeの拡張機能で、その主な機能は「Extract data from any website without code, just clicks」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Tinking - Scrapping Tool拡張機能のCRXファイルをダウンロード

Tinking - Scrapping Tool拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Tinking - Scrapping Tool Tinking - Scrapping Tool
ID ibidcmokfddpkgdoobeihkfnajmodlkp
公式URL https://chromewebstore.google.com/detail/tinking-scrapping-tool/ibidcmokfddpkgdoobeihkfnajmodlkp
説明 Extract data from any website without code, just clicks
ファイルサイズ 2.06 MB
インストール数 796
現在のバージョン 0.1.1
最終更新日 2021-03-24
公開日 2021-02-26
評価 2.67/5 合計 3 レビュー
開発者 baptisteArno
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/baptisteArno/tinking
ヘルプページのURL https://github.com/baptisteArno/tinking/issues/new/choose
プライバシーポリシーページのURL https://github.com/baptisteArno/tinking/blob/master/privacy_policy.md
対応言語 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"
    ]
}