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 |
Eメール | [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" } ] } |