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 |
官方網址 | 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 |
電子郵箱 | [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\/*" ] } |