SoundCloud Likes to Playlist

Extension to add all your SoundCloud Likes to a Playlist in seconds.

什么是SoundCloud Likes to Playlist?

SoundCloud Likes to Playlist是由https://wb.gy开发的Chrome扩展程序,该扩展的主要功能是“Extension to add all your SoundCloud Likes to a Playlist in seconds.”。

扩展截图

screenshot
screenshot
screenshot

下载SoundCloud Likes to Playlist扩展crx文件

下载SoundCloud Likes to Playlist扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        I found that all my SoundCloud likes are public so I built a chrome extension to automate adding all my likes to a Private Playlist :D                    

扩展基本信息

名称 SoundCloud Likes to Playlist SoundCloud Likes to Playlist
ID nkndddcbofchmjogahmikkapkaoglkoh
官方URL https://chromewebstore.google.com/detail/soundcloud-likes-to-playl/nkndddcbofchmjogahmikkapkaoglkoh
简介 Extension to add all your SoundCloud Likes to a Playlist in seconds.
文件大小 564 KB
安装次数 3,021
当前版本 2.2.11
更新时间 2021-09-02
上架时间 2019-02-12
评分 4.67/5 共55次评分
开发者 https://wb.gy
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2
帮助页面URL https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2
隐私政策页面URL https://joinsafqa.com/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "2.2.11",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon.png",
        "128": "images\/logo-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": [],
    "omnibox": {
        "keyword": "soundcloud"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.soundcloud.com\/*",
                "https:\/\/*.soundcloud.com\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "webRequest"
    ],
    "web_accessible_resources": [
        "images\/*"
    ]
}