scam
SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.
scamとは何ですか?
scamはreidによって開発されたChromeの拡張機能で、その主な機能は「SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.」です。
拡張機能のスクリーンショット
scam拡張機能のCRXファイルをダウンロード
scam拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
scam (the soundcloud account manager) is a simple account switching extension for SoundCloud. new accounts are added whenever you log in, and you can easily switch between them in the username dropdown to the right of the "upload" button. special thanks to jammy for his contributions.
拡張機能の基本情報
名前 | scam |
ID | pjjmnjpdamiodphjhekmbdgnbegndmkc |
公式URL | https://chromewebstore.google.com/detail/scam/pjjmnjpdamiodphjhekmbdgnbegndmkc |
説明 | SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts. |
ファイルサイズ | 59.49 KB |
インストール数 | 2,120 |
現在のバージョン | 1.3.1 |
最終更新日 | 2022-06-09 |
公開日 | 2020-04-24 |
評価 | 4.88/5 合計 24 レビュー |
開発者 | reid |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/sad/scam |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "scam", "version": "1.3.1", "manifest_version": 2, "description": "SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.", "homepage_url": "https:\/\/github.com\/nihilist\/scam", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "240": "icons\/icon240.png" }, "content_scripts": [ { "matches": [ "https:\/\/soundcloud.com\/*" ], "js": [ "src\/switcher.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/secure.soundcloud.com\/*" ], "js": [ "src\/login.js" ], "all_frames": true, "run_at": "document_start" } ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "permissions": [ "cookies", "https:\/\/soundcloud.com\/*", "https:\/\/api-auth.soundcloud.com\/*", "https:\/\/secure.soundcloud.com\/*" ] } |