Auto Outline

Auto Outline

Always view selected sites through outline.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto Outline",
  "description": "Always view selected sites through outline.com.",
  "author": "fredley",
  "version": "0.1",
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "options.html",
    "options.js",
    "popup.js"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Auto Outline",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}