Hide to Print

Hide to Print

Hide html element to Print what you want in web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Hide-To-Print",
  "short_name": "Hide html element",
  "description": "Hide html element to Print web page",
  "version": "1.1.1resigned1",
  "minimum_chrome_version": "38",
  "applications": {
    "gecko": {
      "id": "@hidetoprint",
      "strict_min_version": "51.0"
    }
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "<all_urls>",
    "activeTab"
  ],
  "icons": {
    "16": "assets/icon_16.png",
    "128": "assets/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "assets/icon_16.png",
      "38": "assets/icon_128.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}