リパライン語ツール

リパライン語学習者向けのツール。ページ内で文章を選択すると、単語ごとの説明を見たり、文章を読み上げることができます。
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "version": "0.6.2",
  "name": "リパライン語ツール",
  "description": "リパライン語学習者向けのツール。ページ内で文章を選択すると、単語ごとの説明を見たり、文章を読み上げることができます。",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "リパライン語辞書",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contents.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "https://fonts.xz.style/serve/*"
  ],
  "applications": {
    "gecko": {
      "id": "{bb0ac656-f771-4536-b008-e8e3fc96a8df}"
    }
  }
}