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. 擴展基本資訊
| 名稱 | |
| ID | jcmnggoigialkomambfiijlafocekbeo |
| 官方網址 | 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"
}
]
} | |