Strava unfollow

Automation extension for Strava

Strava unfollowとは何ですか?

Strava unfollowはmichaelrbloodによって開発されたChromeの拡張機能で、その主な機能は「Automation extension for Strava」です。

拡張機能のスクリーンショット

screenshot

Strava unfollow拡張機能のCRXファイルをダウンロード

Strava unfollow拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A simple tool to follow those that follow you and unfollow those that do not.
If this is useful,   leave a comment - in the future we will create the ability to build a list followers from others pages - and then auto follow them.

To use it,   go to strava and then click the extension button to turn it on.                    

拡張機能の基本情報

名前 Strava unfollow Strava unfollow
ID bdlfpeflmphenmbcehcmckjoiomojghe
公式URL https://chromewebstore.google.com/detail/strava-unfollow/bdlfpeflmphenmbcehcmckjoiomojghe
説明 Automation extension for Strava
ファイルサイズ 244 KB
インストール数 180
現在のバージョン 1.0
最終更新日 2020-12-24
公開日 2020-11-20
評価 2.18/5 合計 17 レビュー
開発者 michaelrblood
Eメール [email protected]
支払い方法 free
対応言語 en
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"
    ]
}