Old Genius (Song Page Switcher)

Switch between Genius's redesign and old song page, without it resetting when you click on another page.

Co to jest Old Genius (Song Page Switcher)?

Old Genius (Song Page Switcher) to rozszerzenie Chrome opracowane przez Matei Marica, a jego główną funkcją jest „Switch between Genius's redesign and old song page, without it resetting when you click on another page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Old Genius (Song Page Switcher)

Pobierz pliki rozszerzeń Old Genius (Song Page Switcher) 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

                        Note: You have to be signed in to Genius for this extension to work.

Features:
- Switching between the old song page and the redesign will persist the state between pages.
- Removes the "go to the old/new song page" buttons.

This extension collects no data and is 100% open-source.
Privacy policy: https://github.com/mateimarica/old-genius/wiki/Privacy-Policy                    

Podstawowe informacje o rozszerzeniu

Nazwa Old Genius (Song Page Switcher) Old Genius (Song Page Switcher)
ID dgdnchkkkknfdahaehnkfifchgnoidjj
Oficjalny URL https://chromewebstore.google.com/detail/old-genius-song-page-swit/dgdnchkkkknfdahaehnkfifchgnoidjj
Opis Switch between Genius's redesign and old song page, without it resetting when you click on another page.
Rozmiar pliku 15.28 KB
Liczba instalacji 191
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2023-04-25
Data Publikacji 2023-03-31
Ocena 5.00/5 Łącznie 10 Oceny
Deweloper Matei Marica
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mateimarica/old-genius
Adres URL Strony Polityki Prywatności https://github.com/mateimarica/old-genius/wiki/Privacy-Policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "[email protected]",
    "manifest_version": 3,
    "name": "Old Genius (Song Page Switcher)",
    "short_name": "Old Genius",
    "version": "1.0.5",
    "description": "Switch between Genius's redesign and old song page, without it resetting when you click on another page.",
    "minimum_chrome_version": "101",
    "content_security_policy": {
        "extension_pages": "default-src 'self'; frame-ancestors 'none';"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ],
            "matches": [
                "https:\/\/genius.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background\/background.mjs",
        "type": "module"
    },
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/genius.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "modules\/regex.mjs"
            ],
            "matches": [
                "https:\/\/genius.com\/*"
            ]
        }
    ]
}