Tweaks for VSCO

Tweaks for VSCO

View full-size images, profile image, and videos on vsco.co website, and download them with a single click. Includes custom gallery…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tweaks for VSCO",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "action": {
    "default_icon": {
      "16": "icon-16.png",
      "19": "icon-19.png",
      "24": "icon-24.png",
      "32": "icon-32.png",
      "38": "icon-38.png",
      "48": "icon-48.png",
      "96": "icon-96.png"
    },
    "default_popup": "popup.html",
    "default_title": "Tweaks for VSCO"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "commands": {
    "_execute_action": {
      "description": "Open Popup"
    }
  },
  "icons": {
    "16": "icon-16.png",
    "19": "icon-19.png",
    "24": "icon-24.png",
    "32": "icon-32.png",
    "38": "icon-38.png",
    "48": "icon-48.png",
    "96": "icon-96.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "downloads"
  ],
  "version": "3.4.6",
  "content_scripts": [
    {
      "js": [
        "content.custom-styles.bundle.js"
      ],
      "matches": [
        "https://vsco.co/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "content.vsco.bundle.js"
      ],
      "matches": [
        "https://vsco.co/*"
      ],
      "run_at": "document_end"
    }
  ]
}