Sourcer

Sourcer

The one tool for all news insight.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sourcer",
  "description": "The one tool for all news insight.",
  "version": "1.4.5",
  "manifest_version": 3,
  "icons": {
    "16": "./logo16.png",
    "32": "./logo32.png",
    "48": "./logo48.png",
    "72": "./logo72.png",
    "96": "./logo96.png",
    "128": "./logo128.png",
    "144": "./logo144.png",
    "192": "./logo192.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "./main.js"
      ],
      "css": [
        "/main.css"
      ]
    }
  ],
  "action": {
    "default_title": "Sourcer",
    "default_icon": "./logo.png",
    "default_popup": "./popup.html"
  },
  "background": {
    "service_worker": "./background/main.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.gif"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}