Remember It

Remember It

Chrome extension to of Remember it. Select text and save it anytime immediately.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Remember It",
  "description": "Chrome extension to of Remember it. Select text and save it anytime immediately.",
  "version": "0.1.4",
  "manifest_version": 3,
  "icons": {
    "16": "img/logo-16.png",
    "32": "img/logo-32.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "img/logo-48.png"
  },
  "content_scripts": [
    {
      "js": [
        "assets/index.ts-loader-e20495a5.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "img/logo-16.png",
        "img/logo-32.png",
        "img/logo-48.png",
        "img/logo-128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "assets/chunk-4c7380d6.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://rememberit.oscarjiang.site/*",
      "http://localhost:3001/*"
    ]
  },
  "host_permissions": [
    "https://remember.oscarjiang.site/*",
    "http://localhost:3001/*"
  ],
  "permissions": [
    "contextMenus",
    "storage"
  ]
}