Debump

Debump

Debump is a chrome extension that helps Depop sellers automatically refresh their items.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Debump",
  "version": "1.0.0",
  "manifest_version": 2,
  "icons": {
    "16": "./db 16x16.png",
    "32": "./db 32x32.png",
    "48": "./db 48x48.png",
    "128": "./db 128x128.png"
  },
  "description": "Debump is a chrome extension that helps Depop sellers automatically refresh their items.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "https://*.depop.com/*",
    "http://*.depop.com/*"
  ],
  "content_security_policy": "script-src 'self' https://*.firebaseio.com/; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Click on the icon to get started",
    "default_icon": {
      "16": "./db 16x16.png",
      "32": "./db 32x32.png",
      "48": "./db 48x48.png",
      "128": "./db 128x128.png"
    }
  }
}