MagicNumbers
Find&Preview your magic number with this extension!
MagicNumbers란 무엇입니까?
MagicNumbers은(는) underscorestarchaser에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find&Preview your magic number with this extension!"입니다.
확장 프로그램 스크린샷
MagicNumbers 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Are you bored? CTRL+C and CTRL+V too much time Now it easy! You only highlight some magicnumber and right click now you can "warp" to nhentai or you can doubleclick on magicnumber to preview it <3
확장 프로그램 기본 정보
이름 | MagicNumbers |
ID | eachmpbcaoeffcmbeokmafkgdaffedpi |
공식 URL | https://chrome.google.com/webstore/detail/magicnumbers/eachmpbcaoeffcmbeokmafkgdaffedpi |
설명 | Find&Preview your magic number with this extension! |
파일 크기 | 56.42 KB |
설치 횟수 | 162 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-04-02 |
출시 날짜 | 2020-03-31 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | underscorestarchaser |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://starchaser.me/magic_numbers |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MagicNumbers", "description": "Find&Preview your magic number with this extension!", "version": "1.0", "browser_action": { "default_icon": "icons\/32.png" }, "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "64": "icons\/64.png", "128": "icons\/128.png" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ], "css": [ "style.css" ] } ] } |