Office redirector

Office redirector

Changes links to office files to URI format which allows these files to be opened directly from the web or SharePoint.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Office redirector",
  "version": "0.9",
  "manifest_version": 2,
  "description": "Changes links to office files to URI format which allows these files to be opened directly from the web or SharePoint.",
  "browser_action": {
    "default_icon": "Office_redirector_16.png",
    "default_title": "Office redirector",
    "default_popup": "officeredirector.html"
  },
  "icons": {
    "16": "Office_redirector_16.png",
    "48": "Office_redirector_48.png",
    "128": "Office_redirector_128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ],
  "background": {
    "scripts": [
      "RulesService.js",
      "RuleMatcher.js",
      "background.js"
    ]
  }
}