Web To JSON

Web To JSON

Take value from web and take json api updated

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Web To JSON",
  "version": "1.1",
  "description": "Take value from web and take json api updated",
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "tabs",
    "alarms",
    "identity",
    "identity.email"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_width": 500,
    "default_height": 500,
    "default_title": "Keep Updated",
    "default_icon": {
      "16": "image/ice_aktiv.png"
    }
  },
  "icons": {
    "16": "image/ice_16.png",
    "48": "image/ice_48.png",
    "128": "image/ice_128.png"
  },
  "background": {
    "type": "module",
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}