MALfo!
Get information from Reddit links to MyAnimeList without even visiting the site!
MALfo!란 무엇입니까?
MALfo!은(는) http://www.chrisgregori.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get information from Reddit links to MyAnimeList without even visiting the site!"입니다.
확장 프로그램 스크린샷
MALfo! 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Get information from Reddit links to MyAnimeList without even visiting the site! Ever frequent /r/Anime or /r/Animesuggest and don't want to follow links just to see what an anime's score, ranking, or popularity is? Well now you don't have to, any MyAnimeList anime page link you see on /r/Anime or /r/Animesuggest will automatically be updated to include the following information: - Title - Score - Popularity - Members - Favorites Please feel free to give reviews and feedback on the type of information you'd like to see appear or the style of the extension!
확장 프로그램 기본 정보
이름 | |
ID | lnehgeipjejfchpiecclhnlgohmhilcc |
공식 URL | https://chrome.google.com/webstore/detail/malfo/lnehgeipjejfchpiecclhnlgohmhilcc |
설명 | Get information from Reddit links to MyAnimeList without even visiting the site! |
파일 크기 | 8.6 KB |
설치 횟수 | 10 |
현재 버전 | 1.0 |
최근 업데이트 | 2014-08-09 |
출시 날짜 | 2014-08-09 |
평점 | 4.00/5 총 2 개의 평점 |
개발자 | http://www.chrisgregori.co.uk |
결제 유형 | free |
도움말 페이지 URL | https://docs.google.com/forms/d/13-bcm77YeIq_55EZ-yP4LdZMPRbq7yB6HIQd8Lmk8qg/viewform?usp=send_form |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MALfo!", "description": "Get information from Reddit links to MyAnimeList without even visiting the site!", "version": "1.0", "manifest_version": 2, "icons": { "16": "icon16.png", "128": "icon128.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "default_locale": "en", "permissions": [ "http:\/\/www.myanimelist.net\/*", "http:\/\/www.myanimelist.net\/*" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/r\/Animesuggest\/*", "http:\/\/www.reddit.com\/r\/anime\/*", "http:\/\/myanimelist.net\/animelist\/*" ], "css": [ "malfo.css" ], "js": [ "malfo.js" ] } ] } |