Basecamp Ping Manager

Basecamp Ping Manager

Organise your Basecamp pings, give them a group name, and access them with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Basecamp Ping Manager",
  "description": "Organise your Basecamp pings, give them a group name, and access them with a single click.",
  "version": "1.0.5",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.basecamp.com/*"
      ],
      "js": [
        "jquery3x.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/get_started16.png",
      "32": "/images/get_started32.png",
      "48": "/images/get_started48.png",
      "128": "/images/get_started128.png"
    }
  },
  "icons": {
    "16": "/images/get_started16.png",
    "32": "/images/get_started32.png",
    "48": "/images/get_started48.png",
    "128": "/images/get_started128.png"
  }
}