Wriber Snippet Tool

Wriber Snippet Tool

This extension allows for snippets to be created in Wriber.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Wriber Snippet Tool",
  "description": "This extension allows for snippets to be created in Wriber.",
  "version": "6.3",
  "browser_action": {
    "default_locale": "en",
    "default_icon": "static/images/W_logo.png"
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabs",
    "https://www.wriber.com/",
    "https://app.wriber.com/",
    "https://127.0.0.1:8000/",
    "storage"
  ],
  "web_accessible_resources": [
    "/static/templates/view-snippet.html",
    "/static/js/jquery-2.1.3.min.js",
    "**.html",
    "**.js"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.wriber.com/browse/*",
      "https://app.wriber.com/browse/*",
      "https://127.0.0.1:8000/browse/*",
      "http://127.0.0.1:8000/browse/*",
      "https://www.wriber.com/write/*",
      "https://app.wriber.com/write/*",
      "https://127.0.0.1:8000/write/*",
      "http://127.0.0.1:8000/write/*"
    ]
  },
  "background": {
    "scripts": [
      "/static/js/jquery-2.1.3.min.js",
      "/static/js/background.js"
    ],
    "html": [
      "static/templates/view-snippet.html"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ]
}