Marca - Marked, Never Forget

Marca - Marked, Never Forget

A chrome extension that lets you mark and save web content into self made topics, making them easier than ever to find and access.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Marca - Marked, Never Forget",
  "version": "1.2",
  "description": "A chrome extension that lets you mark and save web content into self made topics, making them easier than ever to find and access.",
  "background": {
    "scripts": [
      "script.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Right click -> Options -> Your Bookmarks",
    "default_popup": "popup.html",
    "default_icon": "marca square logo.png"
  },
  "icons": {
    "16": "marca square logo.png",
    "48": "marca square logo.png",
    "128": "marca square logo.png"
  },
  "homepage_url": "https://marcha.envici.tech",
  "options_page": "index.html",
  "content_security_policy": "script-src 'self' 'sha256-CpJd450Ymh7cH8ENyYw70aUrRPwTETqT6U0B8Mc+e28='; object-src 'self'",
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "http://*/",
    "https://*/"
  ]
}