ResNote for Chrome

ResNote for Chrome

The research notebook extension brought to you by ResNote.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ResNote for Chrome",
  "description": "The research notebook extension brought to you by ResNote.",
  "version": "4.0.11",
  "manifest_version": 3,
  "author": "Scope",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjMefvP4E5VFaaKw7NUFnk3CHtZ/nCp0Z4D9v0oGgL752tqZ5gfrhqOOU0CCERC188TABGNl3nIutydK2v3XMM0Xf4RsYREYnzUABIIZTILvzMsr6U5zaQQ9S+/SRv+n1RicvAnyjchDiRh9l3beKSkF2ibJc/MKeQYVB1agUzCRGFBGSRA92Gf6iKpiLFFpKQPA7JkxInAHGHtTb5LzUKGoD7gRIeteLhfdaRYUz9PvovLBJwdRo7B07l/GBVjm51Tx3CCb1t0itjwpL+GS02CsBRF5bf7vzZ4VFJhlky53i1SefGOC/0K4D7fLSFtzM+CXtXayZ0yItAKaG7HvdoQIDAQAB",
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs",
    "identity",
    "contextMenus"
  ],
  "background": {
    "service_worker": "sworker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://scopeofscience.in/*",
        "*://www.resnote.org/*",
        "*://resnote.org/*"
      ],
      "css": [
        "materialize.css",
        "contentStyle.css"
      ],
      "js": [
        "ga.js",
        "materialize.min.js"
      ]
    }
  ],
  "host_permissions": [
    "https://scopeofscience.in/*",
    "https://resnote.org/*",
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/resnote-logo.PNG",
      "48": "/images/resnote-logo.PNG",
      "128": "/images/resnote-logo.PNG"
    },
    "default_title": "Resnote for Chrome"
  },
  "icons": {
    "16": "/images/resnote-logo.PNG",
    "48": "/images/resnote-logo.PNG",
    "128": "/images/resnote-logo.PNG"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "editor/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "ga.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "query-pdf.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}