IMAKITA AI text summarizer

IMAKITA summarizes long and boring text effectively

IMAKITA AI text summarizer란 무엇입니까?

IMAKITA AI text summarizer은(는) qhapaq_49에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "IMAKITA summarizes long and boring text effectively"입니다.

확장 프로그램 스크린샷

screenshot

IMAKITA AI text summarizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        IMAKITA is fast, simple and accurate AI text summarizer. You can get summary of the text by select and right click. IMAKITA supports English, Japanese, German, Spanish and French. You can download source code on github.

update 2022.03.31 : update manifest to V3                    

확장 프로그램 기본 정보

이름 IMAKITA AI text summarizer IMAKITA AI text summarizer
ID hejainodlpjlekjinpjijbelbceojkee
공식 URL https://chromewebstore.google.com/detail/imakita-ai-text-summarize/hejainodlpjlekjinpjijbelbceojkee
설명 IMAKITA summarizes long and boring text effectively
파일 크기 67.77 KB
설치 횟수 906
현재 버전 0.0.2
최근 업데이트 2022-04-03
출시 날짜 2019-05-15
평점 4.33/5 총 3 개의 평점
개발자 qhapaq_49
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/qhapaq-49/imakita
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMAKITA AI text summarizer",
    "version": "0.0.2",
    "default_locale": "en",
    "manifest_version": 3,
    "description": "IMAKITA summarizes long and boring text effectively",
    "permissions": [
        "contextMenus",
        "clipboardWrite",
        "storage",
        "tabs",
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "img\/icon-16x16.png",
        "48": "img\/icon-48x48.png",
        "128": "img\/icon-128x128.png"
    },
    "action": {
        "default_icon": "img\/icon-16x16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "jquery.highlight-5.js",
                "lang_detect.js",
                "stop_words.js",
                "imakita_body.js",
                "preproc_en.js",
                "tiny_segmenter-0.2.js",
                "preproc_ja.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}