Pathmarks

Pathmarks

Bookmark often used paths and open the bookmarked path with the hostname from the current tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pathmarks",
  "version": "2019.2.0",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "html/options.html",
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "Pathmarks",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+P"
      }
    }
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}