Research Notes

Bookmark, tag or add notes to pages, highlight and save quotes or images, save selected Google searches, filter out search results.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Research Notes",
  "description": "Bookmark, tag or add notes to pages, highlight and save quotes or images, save selected Google searches, filter out search results.",
  "version": "1.0.8.5",
  "action": {
    "default_icon": "rn128.png",
    "default_popup": "deskr-popup.html"
  },
  "icons": {
    "128": "rn128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "background",
    "contextMenus",
    "bookmarks",
    "clipboardRead",
    "scripting"
  ],
  "background": {
    "service_worker": "bkg-srv-worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "deskr.css",
        "tagit.ui-zendesk-modified.css",
        "jquery.tagit.css",
        "balloon.css"
      ],
      "js": [
        "jquery-1.11.3.min.js",
        "jquery.tablesorter.js",
        "jquery-ui-1.11.4-custom-Core-Widget-Position-Autocomplete.min.js",
        "tag-it-modified.js",
        "he.js",
        "mark.js",
        "deskr-common.js",
        "deskr.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "commands": {
    "save_quote": {
      "suggested_key": {
        "default": "Ctrl+Shift+Q",
        "mac": "Command+Shift+Q"
      },
      "description": "Highlight the selection and save as quote"
    },
    "open_all_notes": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Open the all notes -page"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      }
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}