Ezra 自動聖經標示

Ezra 自動聖經標示

Ezra能標示網頁上的聖經依據,如:約 3:16,當鼠標移到經文依據時,就會顯示經文。

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "3.0.0",
  "default_locale": "zh_TW",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "ezra-style.css"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "copy-verse": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "mac": "Command+Shift+C"
      },
      "description": "__MSG_copyVerse__"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "contextMenus",
    "clipboardWrite",
    "storage"
  ]
}