convert web to word

convert web to word

convert open link from web to word.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "convert web to word",
  "short_name": "convert web to word",
  "description": "convert open link from web to word.",
  "version": "0.3",
  "icons": {
    "128": "res/logo.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "jquery.wordexport.js",
      "FileSaver.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "jquery.wordexport.js",
        "FileSaver.js"
      ],
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_popup": "htmltoword.html"
  },
  "manifest_version": 2
}