FastForward

Opera like FastForward feature in your chrome browser.

FastForward란 무엇입니까?

FastForward은(는) damonachey에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opera like FastForward feature in your chrome browser."입니다.

확장 프로그램 스크린샷

screenshot

FastForward 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Opera has a neat feature called FastForward that detects 'next' links on pages and allows you to use the space bar to not only scroll down, but when the bottom of the page is hit it will automatically advance to the next page for continuous mouse free reading.

This extension brings the same features opera users were used to to the chrome browser.  Please feel free to reply with any questions or problems with the extension.

History:
 1.2.2 Removed 'more' as a next word, it caused trouble with many sites and isn't worth it as a default, but can always be added back in if you need it on the options page.

 1.2.1 Added discovery of image links with alt="next" tags

 1.1.2 Fixed bug in loading default excludedUrl list.

 1.1.1 Fixed bug detecting input field.

 1.1.0 Add ability to exclude links from being detected as a 'next page' link.  For example don't treat the 'More' link from the google drop down as a next page link.

 1.0.2 Exclude GMail popup from being fast forwarded.

 1.0: Initial release

Fast Forward                    

확장 프로그램 기본 정보

이름 FastForward FastForward
ID bclfjoomnokgllmiiidbdfjakojplnbo
공식 URL https://chrome.google.com/webstore/detail/fastforward/bclfjoomnokgllmiiidbdfjakojplnbo
설명 Opera like FastForward feature in your chrome browser.
파일 크기 34.74 KB
설치 횟수 1,000
현재 버전 1.2.2
최근 업데이트 2013-07-11
출시 날짜 2013-07-11
평점 3.67/5 총 18 개의 평점
개발자 damonachey
결제 유형 free
확장 프로그램 웹 사이트 http://www.achey.net/2013/05/22/fastforward
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FastForward",
    "version": "1.2.2",
    "manifest_version": 2,
    "description": "Opera like FastForward feature in your chrome browser.",
    "content_scripts": [
        {
            "js": [
                "fastforward.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    }
}