UNSHAKESPEARE

Simplify Reading.

什麼是UNSHAKESPEARE?

UNSHAKESPEARE是由Piyush Santwani開發的Chrome擴展程式,該擴展的主要功能是“Simplify Reading.”。

擴展截圖

screenshot
screenshot
screenshot

下載UNSHAKESPEARE擴展crx文件

下載UNSHAKESPEARE擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 UNSHAKESPEARE UNSHAKESPEARE
ID hmebjhfaclcncpienkooofloegbckofl
官方網址 https://chrome.google.com/webstore/detail/unshakespeare/hmebjhfaclcncpienkooofloegbckofl
簡介 Simplify Reading.
檔案大小 3.76 MB
安裝次數 69
目前版本 1.1.1
更新時間 2021-09-29
上架時間 2018-03-20
評分 4.67/5 共 3 次評分
開發者 Piyush Santwani
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://savegpt.com/privacy_policy
支援的語言 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"
    ]
}