Omnivore List Popup

Omnivore List Popup

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

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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": "src/options.html"
  },
  "icons": {
    "48": "icons/wallet-48.png",
    "96": "icons/wallet-96.png"
  },
  "manifest_version": 3,
  "action": {
    "default_title": "Omnivore List Popup",
    "default_icon": {
      "64": "icons/wallet-black.png"
    },
    "theme_icons": [
      {
        "light": "icons/wallet-black.png",
        "dark": "icons/wallet-white.png",
        "size": 64
      }
    ],
    "default_popup": "src/popup.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://api-prod.omnivore.app/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+D"
      },
      "description": "Open popup"
    },
    "add_current_page": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Add current page to Omnivore"
    }
  },
  "version": "1.9.0"
}