Pile - lightweight bookmarking

Pile - lightweight bookmarking

Store links for later review with a single click of a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Pile - lightweight bookmarking",
  "description": "__MSG_extensionDescription__",
  "version": "1.6.4",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "strict_min_version": "57.0"
    }
  },
  "icons": {
    "48": "icons/pile.svg",
    "96": "icons/pile.svg"
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": "icons/pile.svg",
    "default_title": "__MSG_buttonTitle__",
    "theme_icons": [
      {
        "dark": "icons/pile.svg",
        "light": "icons/pile.svg",
        "size": 32
      }
    ]
  },
  "sidebar_action": {
    "default_icon": "icons/pile.svg",
    "default_title": "Pile",
    "default_panel": "sidebar/panel.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "bookmarks",
    "contextMenus",
    "activeTab",
    "tabs",
    "storage"
  ],
  "commands": {
    "_execute_sidebar_action": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Show/hide the Pile sidebar"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+P"
      },
      "description": "Put it on the Pile"
    }
  }
}