Shribed

Shribed

Opens a new autosaving Shrib notepad tab, best when used with Session Buddy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Shribed",
  "description": "Opens a new autosaving Shrib notepad tab, best when used with Session Buddy",
  "version": "0.9.0",
  "short_name": "Shribed",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Open new Shrib notepad!"
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://shrib.com/*"
      ],
      "js": [
        "persistentNote.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "*.png"
  ],
  "background": {
    "persistent": false,
    "page": "background.html"
  }
}