Byteline Web Scraper

Byteline Web Scraper

Byteline web scraper is used to select web page elements that needs to be scraped. It provides a simple point-and-click interface…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Byteline Web Scraper",
  "name": "Byteline Web Scraper",
  "version": "2.2.20",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "cookies",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "app/background.js"
    ]
  },
  "icons": {
    "16": "icon_16x16.png",
    "32": "icon_32x32.png",
    "48": "icon_48x48.png",
    "64": "favicon.png",
    "128": "icon_128x128.png"
  },
  "browser_action": {
    "default_icon": "favicon.png"
  },
  "web_accessible_resources": [
    "/static/css/content.css",
    "/static/media/*",
    "/webfonts/OpenSans-Regular.ttf"
  ],
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'"
}