Follow My Sound

Extension that allows to Follow/Like all artists in any SoundCloud page, and search by tag

Co to jest Follow My Sound?

Follow My Sound to rozszerzenie Chrome opracowane przez Bi6o, a jego główną funkcją jest „Extension that allows to Follow/Like all artists in any SoundCloud page, and search by tag”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Follow My Sound

Pobierz pliki rozszerzeń Follow My Sound w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Follow My Sound Follow My Sound
ID einejcbfecadhnlkjjcajbakljbikocg
Oficjalny URL https://chrome.google.com/webstore/detail/einejcbfecadhnlkjjcajbakljbikocg
Opis Extension that allows to Follow/Like all artists in any SoundCloud page, and search by tag
Rozmiar pliku 92.13 KB
Liczba instalacji 48
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-03-29
Data Publikacji 2019-03-29
Deweloper Bi6o
Typ Płatności free
Obsługiwane Języki 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"
    }
}