Print Edit WE

Print Edit WE

Edit the contents of a web page prior to printing or saving. Elements in the web page can be edited, formatted, hidden or deleted. Unwanted content, such as adverts and sidebars, can easily be removed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Print Edit WE",
  "version": "29.6",
  "description": "Edit web pages prior to printing. Delete, hide and format elements. Edit text. Remove adverts and sidebars.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128-96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "printedit-we@DW-dev",
      "strict_min_version": "55.0"
    }
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "16": "icon16.png"
    },
    "default_title": "Print Edit WE"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "toolbar.html",
    "inspect-panel.html",
    "select-menu.html",
    "deleteexcept-menu.html",
    "format-panel.html",
    "text-panel.html",
    "save-menu.html",
    "savepdf-panel.html",
    "tools-menu.html",
    "help-panel.html"
  ],
  "commands": {
    "_execute_browser_action": {
      "description": "Print Edit",
      "suggested_key": {
        "default": "Alt+P"
      }
    },
    "printpreview": {
      "description": "Print Preview",
      "suggested_key": {
        "default": "Alt+Shift+P"
      }
    }
  }
}