scam
SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts.
scamคืออะไร?
scam เป็นส่วนขยายของ Chrome ที่พัฒนาโดย reid และคุณลักษณะหลักของมันคือ "SoundCloud Account Manager: Quickly switch between multiple SoundCloud accounts."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย scam
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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\/*" ] } |