Expand & Collapse

Expand & Collapse

Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Expand & Collapse",
  "description": "Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform",
  "homepage_url": "https://github.com/achamsanjeeva/ExpandCollapse",
  "version": "1.0.0",
  "author": "Acham Sanjeeva Kumar",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage",
    "*://*.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/16x16.png",
      "32": "/images/32x32.png",
      "48": "/images/48x48.png",
      "128": "/images/128x128.png"
    }
  },
  "icons": {
    "16": "/images/16x16.png",
    "32": "/images/32x32.png",
    "48": "/images/48x48.png",
    "128": "/images/128x128.png"
  }
}