Marklog.app

Marklog.app

Marklog app extension allows you to upload new bookmarks easily to your account

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Marklog.app",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "Marklog app extension allows you to upload new bookmarks easily to your account",
  "homepage_url": "https://marklog.app/",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "event.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}