Promnesia

Promnesia

Indicates whether and when the page was visited (and more!)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "webext-options-sync.js",
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options_page.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "manifest_version": 2,
  "name": "Promnesia",
  "version": "1.2.1",
  "description": "Indicates whether and when the page was visited (and more!)",
  "icons": {
    "48": "images/ic_not_visited_48.png"
  },
  "browser_action": {
    "default_icon": "images/ic_not_visited_48.png",
    "default_title": "Show promnesia sidebar"
  },
  "permissions": [
    "file:///*",
    "https://*/*",
    "http://*/*",
    "storage",
    "webNavigation",
    "contextMenus",
    "notifications",
    "bookmarks",
    "history"
  ],
  "web_accessible_resources": [
    "sidebar.css",
    "*.js.map"
  ],
  "commands": {
    "_execute_browser_action": {
      "description": "Activate sidebar",
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      }
    },
    "mark_visited": {
      "description": "Mark/unmark visited links on the current page",
      "suggested_key": {
        "default": "Ctrl+Shift+V",
        "mac": "Command+Shift+V"
      }
    },
    "search": {
      "description": "Open search page",
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "mac": "Command+Shift+H"
      }
    }
  }
}