Print Preview

Print Preview

This add-on works by showing a preview before printing. That can be done by clicking the button on the toolbar or shortcut keys.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.5.5",
  "homepage_url": "https://github.com/jhonatasrm/print-preview",
  "default_locale": "en",
  "author": "Jhonatas Machado",
  "applications": {
    "gecko": {
      "strict_min_version": "58.0"
    }
  },
  "icons": {
    "16": "/res/icons/icon.png",
    "32": "/res/icons/icon.png",
    "48": "/res/icons/icon.png",
    "96": "/res/icons/[email protected]"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "/res/icons/[email protected]",
    "theme_icons": [
      {
        "light": "/res/icons/print_light_theme.png",
        "dark": "/res/icons/print_dark_theme.png",
        "size": 16
      },
      {
        "light": "/res/icons/print_light_theme.png",
        "dark": "/res/icons/print_dark_theme.png",
        "size": 32
      }
    ],
    "default_title": "__MSG_extensionEnabled__"
  },
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      },
      "description": "__MSG_shortcut__"
    }
  },
  "options_ui": {
    "browser_style": false,
    "open_in_tab": true,
    "page": "html/preferences.html"
  },
  "background": {
    "scripts": [
      "/js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "activeTab",
    "storage",
    "menus"
  ]
}