Follow My Sound
Extension that allows to Follow/Like all artists in any SoundCloud page, and search by tag
Was ist Follow My Sound?
Follow My Sound ist eine Chrome-Erweiterung, die von Bi6o entwickelt wurde, und ihr Hauptmerkmal ist "Extension that allows to Follow/Like all artists in any SoundCloud page, and search by tag".
Erweiterungsscreenshots
Follow My Sound-Erweiterungs-CRX-Datei herunterladen
Laden Sie Follow My Sound-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension allows you to follow/unfollow and like/unlike all the artists on a SoundCloud page.
Open the page with all the follows/likes that you want, and simply click the corresponding button.
It also gives the option to search by tag B-)
This extension is now and forever free. Enjoy Grundlegende Informationen zur Erweiterung
| Name | |
| ID | einejcbfecadhnlkjjcajbakljbikocg |
| Offizielle URL | https://chrome.google.com/webstore/detail/einejcbfecadhnlkjjcajbakljbikocg |
| Beschreibung | Extension that allows to Follow/Like all artists in any SoundCloud page, and search by tag |
| Dateigröße | 92.13 KB |
| Installationsanzahl | 48 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2019-03-29 |
| Veröffentlichungsdatum | 2019-03-29 |
| Entwickler | Bi6o |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Follow My Sound",
"description": "Extension that allows to Follow\/Like all artists in any SoundCloud page, and search by tag",
"version": "1.0",
"permissions": [
"tabs",
"https:\/\/*.soundcloud.com\/*",
"http:\/\/*.soundcloud.com\/*",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images\/icons\/logo.png",
"38": "images\/icons\/logo.png"
},
"default_popup": "popup.html"
},
"externally_connectable": {
"matches": [
"*:\/\/*.premiumfirstcare.co.uk\/*\/*"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.soundcloud.com\/*"
],
"js": [
"GetFollowings.js"
]
}
],
"icons": {
"16": "images\/icons\/logo.png",
"19": "images\/icons\/logo.png",
"38": "images\/icons\/logo.png",
"64": "images\/icons\/logo.png",
"128": "images\/icons\/logo.png"
}
} | |