Omnivore List Popup

Omnivore List Popup

Displays a popup with a list of your Omnivore articles to quickly open or archive.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Omnivore List Popup",
  "description": "Show a popup with a list of your Omnivore articles to quickly open or archive.",
  "homepage_url": "https://github.com/herrherrmann/omnivore-list-popup",
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "48": "icons/wallet-48.png",
    "96": "icons/wallet-96.png"
  },
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "Omnivore List Popup",
    "default_icon": "icons/wallet-black.png",
    "theme_icons": [
      {
        "light": "icons/wallet-black.png",
        "dark": "icons/wallet-white.png",
        "size": 64
      }
    ],
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "https://api-prod.omnivore.app/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Alt+D"
      },
      "description": "Open popup"
    },
    "add_current_page": {
      "suggested_key": {
        "default": "Ctrl+Alt+S"
      },
      "description": "Add current page to Omnivore"
    }
  },
  "version": "1.8.0"
}