AniList to AniWave
Adds a button on AniList anime pages that searches the anime on AniWave.
AniList to AniWave란 무엇입니까?
AniList to AniWave은(는) Sans에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a button on AniList anime pages that searches the anime on AniWave."입니다.
확장 프로그램 스크린샷
AniList to AniWave 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It's as simple as it sounds, the extension tries to search the anime you're looking at on AniWave, and then creates a button for you to click which takes you directly to the search page, with the filters already set as to narrow down the search. This makes it so only the title you're looking for pops up. There's an experimental option to automatically set the button to the AniWave watch page of the first result, but keep in mind this might fail for niche anime that AniList doesn't have much data on. (In testing it did perform fairly well however so I decided to leave it on by default.) The filters applied by the extension (if corresponding data from AniList is available), besides the name of the anime itself, are: - Format (TV, Movie etc.) - Release Year - Release Season (Spring, Summer etc.) - Status (Finished, Releasing etc.) - Genres (Action, Adventure etc.) This extension is open source at https://github.com/Sans3108/AniList-To-AniWave
확장 프로그램 기본 정보
이름 | AniList to AniWave |
ID | pkffcfjbnbhnbbgfeoanckhcnbpfobim |
공식 URL | https://chromewebstore.google.com/detail/anilist-to-aniwave/pkffcfjbnbhnbbgfeoanckhcnbpfobim |
설명 | Adds a button on AniList anime pages that searches the anime on AniWave. |
파일 크기 | 23.11 KB |
설치 횟수 | 44 |
현재 버전 | 7.0.0 |
최근 업데이트 | 2023-11-06 |
출시 날짜 | 2023-11-03 |
평점 | 4.00/5 총 3 개의 평점 |
개발자 | Sans |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/Sans3108/AniList-To-AniWave/issues |
개인정보 보호 정책 페이지 URL | https://github.com/Sans3108/AniList-To-AniWave/blob/master/Privacy%20Policy.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AniList to AniWave", "description": "Adds a button on AniList anime pages that searches the anime on AniWave.", "version": "7.0.0", "manifest_version": 3, "background": { "service_worker": "scripts\/service-worker.js" }, "permissions": [ "scripting", "tabs", "storage" ], "host_permissions": [ "https:\/\/anilist.co\/*", "https:\/\/aniwave.to\/*" ], "icons": { "128": "assets\/icon128.png" }, "options_page": "views\/options.html" } |