Everest

An extension for automatically adjusting zoom level based on eye distance, requires webcam

什麼是Everest?

Everest是由lemonpi開發的Chrome擴展程式,該擴展的主要功能是“An extension for automatically adjusting zoom level based on eye distance, requires webcam”。

擴展截圖

screenshot
screenshot

下載Everest擴展crx文件

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

擴展使用說明

                        Everest is a Chrome extension that enlarges text on web pages when you move away from the computer screen. Requires a front-facing webcam. For those with two cameras, go to chrome's Settings > Show advanced settings > Privacy > Content settings > Media > Camera.


#### Instructions

1. click the Everest extension icon to start tracking
2. press Ctrl+Shift+3 at any time to re-calibrate distance for default zoom level
3. click the Everest extension icon to stop tracking and go back to original zoom level
4. optionally change jitter tolerance (default 10% zoom) and sample time (default 750ms) by right clicking on extension icon > options

#### Inspiration

Computer users often sit in one static position, which leads to pain and higher risk of health issues. To reduce strain, one should frequently change one's posture while using a computer. However, Herman Miller, a high-end furniture maker, noted in their [research](http://www.hermanmiller.com/research/solution-essays/maintaining-concordance-as-seated-postures-change.html) that ability to view materials on the screen is the most paramount need for computer users, and will stay in unhealthy postures if the alternative is an illegible screen.

When our team members worked together previously, we noted that one team member always changes the zoom level in Google Chrome as he changes his posture so that text stays legible when he moves away from the screen. We realized that this zooming can be automated by using a webcam to measure the distance between the user and the screen, and automatically adapt the text size according to the user's position. In doing so, we hope to make posture changes more natural, and thus improve the working conditions of computer users.

#### Implementation

We implemented Everest as a lightweight Chrome extension that runs in the background to detect the user's position and zooms the page. The user can enable or disable the automatic zoom with a single click, and can press a key sequence (default to Ctrl+Shift+3) to recalibrate the resting position.

The core facial detection is handled by [Neave's face detection library](https://github.com/neave/face-detection). To access the webcam, we used WebRTC, part of HTML5, to stream the video data. We tweaked the detection frequency for efficiency: the current version samples the video at 4/3hz to avoid CPU usage. In initial testing, we discovered that the page would often "jitter", where the zoom will repeatedly change as the video data changes slightly, which disrupts reading. We fixed this problem by avoiding zoom changes that are less than 10%.

The actual zooming is performed by Chrome's zoom API, which was recently introduced on the Dev channel in Chrome 42, so this extension is one of the first extensions to take advantage of this feature.                    

擴展基本資訊

名稱 Everest Everest
ID obnakgpigfngpoodnpjjbjpbohocehja
官方網址 https://chromewebstore.google.com/detail/everest/obnakgpigfngpoodnpjjbjpbohocehja
簡介 An extension for automatically adjusting zoom level based on eye distance, requires webcam
檔案大小 66.86 KB
安裝次數 227
目前版本 1.3.0
更新時間 2015-02-01
上架時間 2015-02-01
評分 3.38/5 共 8 次評分
開發者 lemonpi
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Everest",
    "description": "An extension for automatically adjusting zoom level based on eye distance, requires webcam",
    "version": "1.3.0",
    "icons": {
        "128": "largeicon.png"
    },
    "browser_action": {
        "default_title": "Everest"
    },
    "background": {
        "page": "background.html"
    },
    "commands": {
        "recalibrate": {
            "suggested_key": {
                "default": "Ctrl+Shift+3"
            },
            "description": "Recalibrate to 100% zoom level distance"
        }
    },
    "minimum_chrome_version": "42",
    "permissions": [],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}