Bionic Converter

Chrome extension for Bionic Reading (https://bionic-reading.com)

Co je Bionic Converter?

Bionic Converter je rozšíření Chrome vyvinuté Pixel Prefect, a jeho hlavní funkcí je „Chrome extension for Bionic Reading (https://bionic-reading.com)“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Bionic Converter

Stáhněte si soubory rozšíření Bionic Converter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension uses the Bionic Reading API to convert web pages to the Bionic Reading format. 

A Bionic Reading API key is required, which can be obtained for free from bionic-reading.com. 

This extension is not affiliated with Bionic Reading GmbH.                    

Základní Informace o Rozšíření

Název Bionic Converter Bionic Converter
ID aghdfgeepkhlnpnohgiennjpkidkodnb
Oficiální URL https://chromewebstore.google.com/detail/bionic-converter/aghdfgeepkhlnpnohgiennjpkidkodnb
Popis Chrome extension for Bionic Reading (https://bionic-reading.com)
Velikost souboru 55.09 KB
Počet instalací 515
Aktuální Verze 1.0.1
Poslední Aktualizace 2022-06-03
Datum Vydání 2022-05-23
Vývojář Pixel Prefect
E-mail hello@pixel-prefect.com
Typ Platby free
URL Stránky Nápovědy https://pixel-prefect.com
URL Stránky Zásad Ochrany Soukromí https://pixel-prefect.com/bionic-reader
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bionic Converter",
    "description": "Chrome extension for Bionic Reading (https:\/\/bionic-reading.com)",
    "version": "1.0.1",
    "manifest_version": 3,
    "author": "Pixel Prefect",
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "icons": {
        "16": "\/images\/logo-16.png",
        "32": "\/images\/logo-32.png",
        "48": "\/images\/logo-48.png",
        "128": "\/images\/logo-128.png"
    },
    "options_page": "src\/options.html",
    "background": {
        "service_worker": "src\/scripts\/background.js"
    },
    "action": {
        "default_title": "Activate bionic reading for page",
        "default_icon": {
            "16": "\/images\/logo-16.png",
            "32": "\/images\/logo-32.png",
            "48": "\/images\/logo-48.png",
            "128": "\/images\/logo-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "src\/styles\/main.css"
            ],
            "js": [
                "src\/scripts\/constants.js",
                "src\/scripts\/functions.js"
            ]
        }
    ]
}