Wallabagger

Wallabagger

This wallabag v2 extension has the ability to edit title and tags and set starred, archived, or delete states. You can add a page from the icon or through the right click menu on a link or on a blank page spot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Wallabagger",
  "manifest_version": 2,
  "default_locale": "en",
  "version": "1.17.0",
  "description": "__MSG_Extension_description__",
  "icons": {
    "48": "img/wallabag-icon-48.png",
    "128": "img/wallabag-icon-128.png"
  },
  "browser_action": {
    "default_title": "Wallabagger",
    "default_icon": "img/wallabag-icon-48.png",
    "theme_icons": [
      {
        "dark": "img/wallabagger.svg",
        "light": "img/wallabagger-light.svg",
        "size": 32
      }
    ],
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/common.js",
      "js/deps/text.min.js",
      "js/deps/asmcrypto.all.es5.min.js",
      "js/deps/webcrypto-liner.shim.min.js",
      "js/fetch-api.js",
      "js/wallabag-api.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "optional_permissions": [
    "*://*/api/*"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+W",
        "windows": "Alt+W",
        "mac": "Alt+W"
      }
    },
    "wallabag-it": {
      "suggested_key": {
        "default": "Alt+Shift+W",
        "windows": "Alt+Shift+W",
        "mac": "Alt+Shift+W"
      },
      "description": "__MSG_Wallabag_it_description__"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{7a7b1d36-d7a4-481b-92c6-9f5427cb9eb1}"
    }
  }
}