Show Content Only

Show Content Only

Show an element content without scroll

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Show Content Only",
  "description": "Show an element content without scroll",
  "version": "1.0.6",
  "author": "Shangwu",
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "manifest_version": 2,
  "icons": {
    "16": "images/i16.png",
    "48": "images/i48.png",
    "128": "images/i128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js"
      ]
    }
  ]
}