PDF Extractor

PDF Extractor

This extension helps the user to extract PDF links and create a download page for all the PDF's on the tesseractonline.com website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PDF Extractor",
  "version": "0.0.0.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "description": "This extension helps the user to extract PDF links and create a download page for all the PDF's on the tesseractonline.com website.",
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://tesseractonline.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}