Automark

Automark

Often, we bookmark pages that we want to be able to come back to or that we do not have time to fully digest at the moment. Just as…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Automark",
  "version": "0.2.0",
  "icons": {
    "128": "crx/logo_128px.png"
  },
  "browser_action": {
    "default_icon": {
      "38": "crx/logo_64px.png"
    },
    "default_title": "Automark"
  },
  "background": {
    "scripts": [
      "crx/handleReq.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "bookmarks",
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "chrome_url_overrides": {
    "bookmarks": "index.html"
  },
  "web_accessible_resources": [
    "crx/worker.js"
  ]
}