Download Visualforce Page/Component Code

Download Visualforce Page/Component Code

This extension will add Download button on Visualforce Page and Component page allowing you to download same.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Download Visualforce Page/Component Code",
  "short_name": "Download Visualforce Page/Component Code.",
  "version": "2.0.0",
  "manifest_version": 3,
  "description": "This extension will add Download button on Visualforce Page and Component page allowing you to download same.",
  "homepage_url": "http://www.satrangtech.com/",
  "icons": {
    "8": "img/icon.png",
    "16": "img/icon.png",
    "24": "img/icon.png",
    "32": "img/icon.png",
    "48": "img/icon.png",
    "64": "img/icon.png"
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Satrang Technologies",
  "host_permissions": [
    "*://*.salesforce.com/099*",
    "*://*.salesforce.com/066*"
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": "img/icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.11.1.min.js",
        "background.js"
      ],
      "matches": [
        "https://*.my.salesforce.com/099*",
        "http://*.my.salesforce.com/099*",
        "https://*.my.salesforce.com/066*",
        "http://*.my.salesforce.com/066*"
      ]
    }
  ],
  "background": {
    "service_worker": "back.js"
  },
  "web_accessible_resources": [
    {
      "extension_ids": [],
      "matches": [],
      "resources": [
        "background.js"
      ]
    }
  ]
}