Behirut

Adjust Hebrew script on webpages for greater clarity

Behirutとは何ですか?

Behirutはcharles.w.loderによって開発されたChromeの拡張機能で、その主な機能は「Adjust Hebrew script on webpages for greater clarity」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Behirut拡張機能のCRXファイルをダウンロード

Behirut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Clarify Hebrew script text

This browser extension makes reading Hebrew on the internet easier by allowing the user to change the font, font size, line height.

Most sites do not load fonts that support Hebrew well, and Hebrew with niqqud is often difficult to read. This extension makes it easier to Hebrew text on web sites by injecting more reader friendly fonts into the page.

This project is a fork of the fantastic Wudooh extension — https://chrome.google.com/webstore/detail/wudooh-%D9%88%D8%B6%D9%88%D8%AD/nigfaloeeeakmmgndbdcijjegolpjfhn


The project is free and open source (MIT) and hosted on Github — https://github.com/charlesLoder/Behirut                    

拡張機能の基本情報

名前 Behirut Behirut
ID oheckpbfhaflflnllkaenfabbdcplbhh
公式URL https://chromewebstore.google.com/detail/behirut/oheckpbfhaflflnllkaenfabbdcplbhh
説明 Adjust Hebrew script on webpages for greater clarity
ファイルサイズ 355 KB
インストール数 129
現在のバージョン 1.0
最終更新日 2022-10-10
公開日 2022-10-10
評価 4.00/5 合計 1 レビュー
開発者 charles.w.loder
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/charlesLoder/Behirut
ヘルプページのURL https://github.com/charlesLoder/Behirut
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Behirut",
    "short_name": "Behirut",
    "description": "Adjust Hebrew script on webpages for greater clarity",
    "version": "1.0",
    "minimum_chrome_version": "88",
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_icon": "\/assets\/logo128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "\/assets\/logo016.png",
        "48": "\/assets\/logo048.png",
        "128": "\/assets\/logo128.png",
        "256": "\/assets\/logo256.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_idle",
            "js": [
                "main.min.js"
            ],
            "css": [
                "css\/fonts.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.min.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}