Skim

Skim modifies the way words are displayed in NYT articles. It hopes to investigate if obscuring characters can enhance reading.

什麼是Skim?

Skim是由oeaeee開發的Chrome擴展程式,該擴展的主要功能是“Skim modifies the way words are displayed in NYT articles. It hopes to investigate if obscuring characters can enhance reading.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Skim擴展crx文件

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

擴展使用說明

                        Studies suggest humans can read pretty well even when many characters in a word have been modified. Some studies imply that if the first and last letters of a word are kept intact, the rest can be scrambled without much loss in legibility. Others say we read based on the shapes of whole words rather than letters. Skim is a quick prototype to investigate these ideas.

It provides three ways to view New York Times articles: 
(1) DISEMVOWEL - where vowels are removed,
(2) SCRAMBLE - where interior letters are shuffled,
(3) SHAPES - where interior letters are masked to show only their ascenders and descender.

Skim was built in a day and is imperfect. While it’s intentional that words with three or fewer characters are not modified, things like punctuation were left unaccounted for due to time constraints. If you’d like to build off of this project, it’s available on Github (https://github.com/oeaeee/skim).                    

擴展基本資訊

名稱 Skim Skim
ID ooebdnkfnegjknekehpfpjabmkkomejk
官方網址 https://chromewebstore.google.com/detail/skim/ooebdnkfnegjknekehpfpjabmkkomejk
簡介 Skim modifies the way words are displayed in NYT articles. It hopes to investigate if obscuring characters can enhance reading.
檔案大小 73.08 KB
安裝次數 17
目前版本 0.2.2
更新時間 2014-06-29
上架時間 2014-06-28
評分 5.00/5 共 1 次評分
開發者 oeaeee
付費類型 free
擴展官網 https://github.com/oeaeee/skim
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skim",
    "description": "Skim modifies the way words are displayed in NYT articles. It hopes to investigate if obscuring characters can enhance reading.",
    "version": "0.2.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icon-19.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/nytimes.com\/*",
                "*:\/\/www.nytimes.com\/*",
                "*:\/\/nyt.com\/*",
                "*:\/\/www.nyt.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/www.nytimes.com\/",
                "*:\/\/www.nyt.com\/"
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "sugar.min.js",
                "contentscript.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "icons": {
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}