VietPhrase extension

VietPhrase extension

Vietphrase converter for chinese webpage to Vietnamese with strucphrase ability

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "VietPhrase Editor",
  "description": "Convert chinese website to Vietphrase format, editing name and Vietphrase",
  "version": "0.0.0.7",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "contextMenus",
    "downloads"
  ],
  "background": {
    "page": "background.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{36b48ce9-8da9-4bab-b897-3fb77bf683dd}"
    }
  }
}