Anchor Notes

Anchor Notes

A simple notepad specific to each website you visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Anchor Notes",
  "description": "A simple notepad specific to each website you visit.",
  "version": "2.4.4",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwgo/G08GwvBWm7e3Ht0odqp1n5PhzGTl+V769enlA4UNjGUyMrHY4+0sGiWWFJkwZ1tgQzG3wCYg87Grx/PlRUfhU55FhDvPvOipUJppWZEMhv//5HIRZ49Q2ndqZKoI6D7BsPDgMbpjOjNaaotn3k0O6kCmcweLJi309SOBm13pvziAcHsI09ftDIy7E4nCifuksT0l0pW5ek6zt4kCSwn5qZSALu4XwcYXDTa9R8LCLbB6rZOD3PFq0pnG+ylahrxRImCVqpl2vbrT06sqwUfYhCwxmaTUd2Jq/3pybo7WpnP9Y8WdO1DQaCRzTr9mS3wZkv96gKAcWtxuowX+tQIDAQAB",
  "icons": {
    "16": "/img/browser-icon_16x16.png",
    "48": "/img/app-icon_48x48.png",
    "128": "/img/webstore-button_128x128.png"
  },
  "browser_action": {
    "default_icon": "/img/browser-icon_16x16.png",
    "default_title": "Show/Hide Note"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "/css/ch_note_styles.css"
      ],
      "js": [
        "/js/jquery-3.1.1.js",
        "/js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "identity",
    "http://*/*",
    "https://*/*",
    "https://notes-everywhere-db.herokuapp.com/*"
  ],
  "oauth2": {
    "client_id": "316026697943-b09mq0tj7t7ro6e72tcvir530dkaq423.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/plus.login"
    ]
  }
}