List More - extract key data from detail page

List More - extract key data from detail page

extract key data from the detail page instead of click one by one

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "List More - extract key data from detail page",
  "description": "extract key data from the detail page instead of click one by one",
  "version": "0.2.4",
  "icons": {
    "128": "logo.png"
  },
  "browser_action": {
    "default_title": "List More",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "storage",
    "tabs"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}