1Know - 翻轉你的學習

1Know - 翻轉你的學習

1Know 擴充應用工具讓你在網路上隨手記下資源位置。 https://1know.net

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "1Know - 翻轉你的學習",
  "description": "1Know 擴充應用工具讓你在網路上隨手記下資源位置。 https://1know.net",
  "version": "2022.10.26.1",
  "manifest_version": 2,
  "author": "[email protected]",
  "icons": {
    "16": "icons/[email protected]",
    "48": "icons/[email protected]",
    "128": "icons/[email protected]"
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_title": "1Know",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://*.1know.net/*",
        "https://*.1know.com/*",
        "https://*.1know.org/*"
      ],
      "js": [
        "static/js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "static/js/background.js"
    ]
  }
}