Blog Skipper

Blog Skipper

Skip longreads and comment threads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Blog Skipper",
  "description": "Skip longreads and comment threads.",
  "version": "1.5.0",
  "applications": {
    "gecko": {
      "id": "blog-skipper@ris58h"
    }
  },
  "permissions": [
    "webNavigation",
    "contextMenus",
    "storage"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_title": "Blog Skipper"
  },
  "background": {
    "scripts": [
      "settings.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "core.js",
        "settings.js",
        "content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "settings.json"
  ]
}