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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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) |
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\/*" ] } ] } |