Write, Me

Write, Me

A program to help inspiring writers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "version": "1.2.0",
  "manifest_version": 2,
  "description": "__MSG_extension_description__",
  "author": "__MSG_extension_author__",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png"
  },
  "default_locale": "en",
  "permissions": [
    "storage",
    "downloads"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "javascript/page-background.bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon-128.png",
    "default_title": "__MSG_extension_name__"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+S",
        "mac": "Alt+S",
        "chromeos": "Alt+S",
        "linux": "Alt+S"
      }
    }
  }
}