Soundcloud Cleaner
Randomly removes some reposts from the soundcloud feed.
什么是Soundcloud Cleaner?
Soundcloud Cleaner是由imagiro开发的Chrome扩展程序,该扩展的主要功能是“Randomly removes some reposts from the soundcloud feed.”。
扩展截图
下载Soundcloud Cleaner扩展crx文件
下载Soundcloud Cleaner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Make your soundcloud feed usable again with this free extension. Choose the amount of reposts to remove from the feed - on each refresh the addon will remove a certain number of reposts based on your preference.
扩展基本信息
名称 | Soundcloud Cleaner |
ID | jcmnggoigialkomambfiijlafocekbeo |
官方URL | https://chromewebstore.google.com/detail/soundcloud-cleaner/jcmnggoigialkomambfiijlafocekbeo |
简介 | Randomly removes some reposts from the soundcloud feed. |
文件大小 | 38.08 KB |
安装次数 | 110 |
当前版本 | 1.21 |
更新时间 | 2019-05-05 |
上架时间 | 2019-05-05 |
评分 | 4.00/5 共7次评分 |
开发者 | imagiro |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Soundcloud Cleaner", "version": "1.21", "description": "Randomly removes some reposts from the soundcloud feed.", "icons": { "48": "iconOn.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": false }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/soundcloud.com\/*" ], "js": [ "jquery.js", "script.js" ], "run_at": "document_start" } ] } |