Add to Shaarli

Add to Shaarli

This extension lets you add the current tab or a note to your Shaarli instance.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Add to Shaarli",
  "description": "This extension lets you add the current tab or a note to your Shaarli instance.",
  "version": "1.1.0",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "commands": {
    "add-url": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Add current tab"
    },
    "add-note": {
      "suggested_key": {
        "default": "Alt+N"
      },
      "description": "Add a note"
    }
  }
}