Print for Firefox

Print for Firefox

Print the current page you see with one single click. That for all kinds of photo printing, poster printing, business cards, etc. Print today a web page, photo or business card with your own favorite Print button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "Print",
  "version": "2.2.4.1resigned1",
  "description": "__MSG_description__",
  "homepage_url": "https://www.stefanvd.net/support/",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "19": "icons/default.png",
      "38": "icons/[email protected]"
    },
    "default_title": "__MSG_name__"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.stefanvd.net/project/print/browser/options.html"
      ],
      "js": [
        "js/constants.js",
        "js/options.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "page": "background.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "MacCtrl+Shift+P"
      }
    }
  },
  "options_ui": {
    "browser_style": false,
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "storage"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "49.0a1"
    }
  }
}