Tinking - Scrapping Tool

Tinking - Scrapping Tool

Extract data from any website without code, just clicks

Merlin
Additional files are visible only to premium users

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_urls>"
      ],
      "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"
  ]
}