New Tab - Pocketizer

New Tab - Pocketizer

Unofficial Pocket new tab extension for Firefox You can mark your items as read, delete them or add to favorites list. You can find your items faster by searching over titles and URLs and add new items to unread list. Uses https://getpocket.com API

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_EXTENSION_NAME__",
  "version": "1.12.0",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "author": "Gert Glükmann @glukmann",
  "homepage_url": "https://gglukmann.github.io/pocketizer",
  "icons": {
    "16": "assets/images/icon16.png",
    "32": "assets/images/icon32.png",
    "48": "assets/images/icon48.png",
    "64": "assets/images/icon64.png",
    "128": "assets/images/icon128.png",
    "256": "assets/images/icon256.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/images/icon16.png",
      "32": "assets/images/icon32.png"
    }
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "assets/js/extension/content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "assets/js/extension/background.js"
    ]
  },
  "permissions": [
    "identity",
    "https://*.getpocket.com/*",
    "https://getpocket.com/"
  ],
  "applications": {
    "gecko": {
      "strict_min_version": "54.0"
    }
  }
}