Genius Copier
This extension lets you copy lyrics or images on Genius.com
Genius Copier란 무엇입니까?
Genius Copier은(는) paolodedo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension lets you copy lyrics or images on Genius.com"입니다.
확장 프로그램 스크린샷
Genius Copier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Genius Copier Extension for Chrome With this small and light plugin, you have the chance to copy lyrics and get image URL in a simplified way. The new 6.0 version provides utilities, like "Expand All" in order to see music productions and an easy way to open all the songs in browser tabs, even for the "Album" page! Plus, you have the possibility of setting your custom width and height for a nice and useful Youtube floating media box.
확장 프로그램 기본 정보
이름 | |
ID | gmplelbepcielekgokdldeffbkjacglf |
공식 URL | https://chrome.google.com/webstore/detail/genius-copier/gmplelbepcielekgokdldeffbkjacglf |
설명 | This extension lets you copy lyrics or images on Genius.com |
파일 크기 | 2.07 MB |
설치 횟수 | 93 |
현재 버전 | 7.0 |
최근 업데이트 | 2021-11-23 |
출시 날짜 | 2020-03-03 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | paolodedo |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Genius Copier", "short_name": "Genius Copier", "description": "This extension lets you copy lyrics or images on Genius.com", "version": "7.0", "options_ui": { "page": "options.html", "open_in_tab": false }, "icons": { "128": "skin\/images\/genius-icon.png" }, "web_accessible_resources": [ { "resources": [ "js\/script.js", "assets\/fontawesome\/*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "js": [ "js\/vendor\/jquery-3.3.1.min.js", "js\/vendor\/toastr-2.1.4.min.js", "js\/genius-copier.js" ], "matches": [ "https:\/\/genius.com\/*" ], "css": [ "skin\/css\/vendor\/toastr-2.1.4.min.css", "skin\/css\/genius-copier.css", "assets\/fontawesome\/css\/all.min.css" ] } ], "action": { "default_icon": "skin\/images\/genius-favicon-19x19px.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage" ] } |