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.」です。
拡張機能のスクリーンショット
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) |
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 |
Eメール | [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\/*" ] } ] } |