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開發的Chrome擴展程式,該擴展的主要功能是“Switch between Genius's redesign and old song page, without it resetting when you click on another page.”。

擴展截圖

screenshot

下載Old Genius (Song Page Switcher)擴展crx文件

下載Old Genius (Song Page Switcher)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
            ]
        }
    ]
}