FB2 Chrome Reader

Allows you to read files with the .fb2 extension in the Chrome browser.

FB2 Chrome Reader란 무엇입니까?

FB2 Chrome Reader은(는) reiko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to read files with the .fb2 extension in the Chrome browser."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

FB2 Chrome Reader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Now you can open and read files with the .fb2 extension in the Chrome browser. (local files). Just drag and drop your .fb2 file into your browser and read!

▶️▶️▶️To run this extension you need to: "Allow access to file URLS" in the "Extension management" tab◀️◀️◀️

Version: 1.0.1 - minor fixes                    

확장 프로그램 기본 정보

이름 FB2 Chrome Reader FB2 Chrome Reader
ID ejlpdggljbilpbpegpemlioncoakcimk
공식 URL https://chromewebstore.google.com/detail/fb2-chrome-reader/ejlpdggljbilpbpegpemlioncoakcimk
설명 Allows you to read files with the .fb2 extension in the Chrome browser.
파일 크기 162 KB
설치 횟수 26,689
현재 버전 1.0.1
최근 업데이트 2023-08-30
출시 날짜 2020-04-07
평점 3.35/5 총 62 개의 평점
개발자 reiko
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "short_name": "FB2 Reader",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.0.1",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "FB2 Chrome Reader",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*.fb2"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ],
            "css": [
                "fonts.css",
                "styles.css"
            ]
        }
    ],
    "permissions": []
}