Watch Stock 0.1.5

Watch Stock 0.1.5

方便低調的觀察股市資訊,支援拖曳調整股票資訊,分類編輯功能,目前支援台股

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Watch Stock 0.1.5",
  "version": "0.1.5",
  "action": {
    "default_icon": {
      "16": "img/16.png",
      "32": "img/32.png"
    },
    "default_title": "Watch Stock",
    "default_popup": "src/html/popup.html"
  },
  "description": "方便低調的觀察股市資訊,支援拖曳調整股票資訊,分類編輯功能,目前支援台股",
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "author": "HSY",
  "background": {
    "service_worker": "src/js/bk.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "cross_origin_embedder_policy": {
    "value": "require-corp"
  },
  "cross_origin_opener_policy": {
    "value": "same-origin"
  },
  "devtools_page": "devtools.html",
  "externally_connectable": {
    "matches": [
      "*://*.example.com/*"
    ]
  },
  "file_system_provider_capabilities": {
    "configurable": true,
    "multiple_mounts": true,
    "source": "network"
  },
  "homepage_url": "https://investsnote.blogspot.com/p/roor.html",
  "host_permissions": [
    "https://www.google.com/"
  ],
  "offline_enabled": true,
  "omnibox": {
    "keyword": "aString"
  },
  "permissions": [
    "notifications",
    "activeTab",
    "tabs",
    "contextMenus",
    "background",
    "alarms",
    "scripting"
  ],
  "short_name": "Watch Stock",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version_name": " basic",
  "options_page": "src/html/setting.html"
}