Tiny Tiny RSS Open in Background Tab

Tiny Tiny RSS Open in Background Tab

Open Tiny Tiny RSS links in a background tab using a shortcut key.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tiny Tiny RSS Open in Background Tab",
  "version": "0.0.3",
  "description": "Open Tiny Tiny RSS links in a background tab using a shortcut key.",
  "icons": {
    "48": "assets/img/icon48.png",
    "128": "assets/img/icon128.png"
  },
  "background": {
    "service_worker": "assets/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/js/handler.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage"
  ]
}