Old Genius (Song Page Switcher)

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

Old Genius (Song Page Switcher) क्या है?

Old Genius (Song Page Switcher) Matei Marica द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Switch between Genius's redesign and old song page, without it resetting when you click on another page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Old Genius (Song Page Switcher) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Old Genius (Song Page Switcher) Old Genius (Song Page Switcher)
ID dgdnchkkkknfdahaehnkfifchgnoidjj
आधिकारिक URL https://chromewebstore.google.com/detail/old-genius-song-page-swit/dgdnchkkkknfdahaehnkfifchgnoidjj
विवरण Switch between Genius's redesign and old song page, without it resetting when you click on another page.
फ़ाइल का आकार 15.28 KB
स्थापना संख्या 191
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2023-04-25
प्रकाशन तिथि 2023-03-31
रेटिंग 5.00/5 कुल 10 रेटिंग्स
डेवलपर Matei Marica
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mateimarica/old-genius
गोपनीयता नीति पृष्ठ URL https://github.com/mateimarica/old-genius/wiki/Privacy-Policy
समर्थित भाषाएँ 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\/*"
            ]
        }
    ]
}