Content Finder

Content Finder

The easiest way to identify the endpoint where the content is coming from.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Content Finder",
  "description": "The easiest way to identify the endpoint where the content is coming from.",
  "version": "1.1",
  "author": "White Tower Software LLC",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Content Finder"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "contentscript.js"
      ],
      "css": [
        "main.css",
        "fonts/css/fontawesome-all.min.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "inject.js",
    "fonts/webfonts/*"
  ]
}