UNSHAKESPEARE

Simplify Reading.

Co je UNSHAKESPEARE?

UNSHAKESPEARE je rozšíření Chrome vyvinuté Piyush Santwani, a jeho hlavní funkcí je „Simplify Reading.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření UNSHAKESPEARE

Stáhněte si soubory rozšíření UNSHAKESPEARE 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í

                        Every worthy literature that you read online expects you have to have a decent vocabulary. Honestly, its important to keep polishing your language skills. The traditional way of doing that has been learning the dictionary meaning of the content word by word. 

UNSHAKESPEARE makes the process a little more intuitive and seamless. With inline meanings of words and idioms, it makes reading simpler and satisfying. It cleans up all the noise surrounding the content, making it distraction-free.

The plugin currently supports only English language. If you have any suggestions to further improve the reading experience, feel free to contact me. Leave your ratings and comments if you find the extension useful :)

Download Android app from here - https://goo.gl/55YAiZ                    

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

Název UNSHAKESPEARE UNSHAKESPEARE
ID hmebjhfaclcncpienkooofloegbckofl
Oficiální URL https://chrome.google.com/webstore/detail/unshakespeare/hmebjhfaclcncpienkooofloegbckofl
Popis Simplify Reading.
Velikost souboru 3.76 MB
Počet instalací 69
Aktuální Verze 1.1.1
Poslední Aktualizace 2021-09-29
Datum Vydání 2018-03-20
Hodnocení 4.67/5 Celkem 3 Hodnocení
Vývojář Piyush Santwani
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://savegpt.com/privacy_policy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UNSHAKESPEARE",
    "version": "1.1.1",
    "manifest_version": 2,
    "description": "Simplify Reading.",
    "icons": {
        "16": "src\/assets\/images\/icon.png",
        "48": "src\/assets\/images\/icon.png",
        "128": "src\/assets\/images\/icon.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/options\/index.html",
    "browser_action": {
        "default_icon": "src\/assets\/images\/icon.png",
        "default_title": "UnShakespeare",
        "default_popup": "src\/html\/popup.html"
    },
    "permissions": [
        "tabs",
        "",
        "*:\/\/*\/*",
        "contextMenus"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/content_style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/assets\/js\/jquery.min.js",
                "src\/inject\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/index.html"
    ]
}