Outline for Chrome

Outline for Chrome

Outline for Chrome puts customer-led powers at your fingertips where you work.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "manifest_version": 2,
  "version": "1.11",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "homepage_url": "https://heyoutline.com",
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "/images/logo-16.png",
      "32": "/images/logo-32.png",
      "48": "/images/logo-48.png",
      "128": "/images/logo-128.png"
    },
    "default_title": "__MSG_extActionTitle__"
  },
  "icons": {
    "16": "/images/logo-16.png",
    "32": "/images/logo-32.png",
    "48": "/images/logo-48.png",
    "128": "/images/logo-128.png"
  },
  "background": {
    "scripts": [
      "js/backgroundApi.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://*.heyoutline.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "css/app.css"
      ]
    }
  ],
  "commands": {
    "OPEN-CREATE-HIGHLIGHT": {
      "suggested_key": {
        "default": "Ctrl+Shift+X"
      },
      "description": "Create Highlight in Outline"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+P"
      },
      "description": "Open Outline extension popup"
    },
    "OPEN-OUTLINE": {
      "suggested_key": {
        "default": "Ctrl+Shift+O"
      },
      "description": "Open Outline"
    }
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "fonts/Graphik-Bold.otf",
    "fonts/Graphik-Medium.otf",
    "fonts/Graphik-Regular.otf",
    "fonts/*.otf"
  ]
}