Promnesia

Promnesia

Enhancement of your browsing history

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "webext-options-sync.js",
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options_page.html",
    "browser_style": true,
    "open_in_tab": true
  },
  "manifest_version": 2,
  "name": "Promnesia",
  "version": "1.2.4",
  "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",
    "browser_style": true
  },
  "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+Alt+E",
        "mac": "Command+Alt+E"
      }
    },
    "mark_visited": {
      "description": "Mark/unmark visited links on the current page",
      "suggested_key": {
        "default": "Ctrl+Alt+V",
        "mac": "Command+Alt+V"
      }
    },
    "search": {
      "description": "Open search page",
      "suggested_key": {
        "default": "Ctrl+Alt+H",
        "mac": "Command+Alt+H"
      }
    }
  },
  "page_action": {
    "browser_style": true,
    "default_icon": {
      "48": "images/ic_visited_48.png"
    },
    "default_title": "Promnesia"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{07c6b8e1-94f7-4bbf-8e91-26c0a8992ab5}"
    }
  }
}