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) là gì?

Old Genius (Song Page Switcher) là một tiện ích mở rộng Chrome được phát triển bởi Matei Marica, và tính năng chính của nó là "Switch between Genius's redesign and old song page, without it resetting when you click on another page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Old Genius (Song Page Switcher)

Tải xuống các tệp mở rộng Old Genius (Song Page Switcher) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Old Genius (Song Page Switcher) Old Genius (Song Page Switcher)
ID dgdnchkkkknfdahaehnkfifchgnoidjj
URL Chính Thức https://chromewebstore.google.com/detail/old-genius-song-page-swit/dgdnchkkkknfdahaehnkfifchgnoidjj
Mô tả Switch between Genius's redesign and old song page, without it resetting when you click on another page.
Kích Thước Tệp 15.28 KB
Số Lần Cài Đặt 191
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2023-04-25
Ngày Phát Hành 2023-03-31
Đánh Giá 5.00/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Matei Marica
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mateimarica/old-genius
URL Trang Chính Sách Bảo Mật https://github.com/mateimarica/old-genius/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}