Strava unfollow

Strava unfollow

Automation extension for Strava

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Strava unfollow",
  "version": "1.0",
  "description": "Automation extension for Strava",
  "browser_action": {
    "default_title": "Start extension"
  },
  "icons": {
    "16": "icon/unfollow-light.jpg",
    "48": "icon/unfollow-light.jpg",
    "128": "icon/unfollow-light.jpg"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.strava.com/athletes/*/follows?*",
        "https://www.strava.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/content.js"
      ]
    },
    {
      "matches": [
        "https://www.strava.com/",
        "https://www.strava.com/dashboard",
        "https://www.strava.com/onboarding"
      ],
      "js": [
        "js/checkLogin.js"
      ]
    }
  ],
  "permissions": [
    "https://www.strava.com/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/eventPage.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "popup.html"
  ]
}