Quicken

Surf faster than your mouse can handle!

Quicken란 무엇입니까?

Quicken은(는) Yigal Korman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Surf faster than your mouse can handle!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Use the keyboard to browse the web - FORWARD!

When our icon appears in the omnibar - you can click the icon or use Ctrl+Right to go to the next page.

Note that you can also use Ctrl+Left to go back.

This feature works for sites where there's a next page to go to, like multi-page articles, forums and search results.

New! - Adding sites manually
Add a next button/link manually by right clicking on it and selecting "Set as Quicken Next" in the context menu.

Supported sites:
* Google, Yahoo and Bing search engines.
* Youtube search and playlists.
* Ars Technica, Reuters and other news sites.
* Blogspot based blogs.
* PHP-BB base forums.
* Wordpress based blogs.
* Tumblr sites.
* and many more ...                    

확장 프로그램 기본 정보

이름 Quicken Quicken
ID bcnfaiaknkbbcmpeedkjjjcdmjlgbafo
공식 URL https://chromewebstore.google.com/detail/quicken/bcnfaiaknkbbcmpeedkjjjcdmjlgbafo
설명 Surf faster than your mouse can handle!
파일 크기 19.04 KB
설치 횟수 615
현재 버전 2.4
최근 업데이트 2014-05-21
출시 날짜 2014-05-21
평점 3.43/5 총 7 개의 평점
개발자 Yigal Korman
결제 유형 free
확장 프로그램 웹 사이트 http://ykorman.github.io/nextpage-chrome/
도움말 페이지 URL https://github.com/ykorman/nextpage-chrome/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quicken",
    "description": "Surf faster than your mouse can handle!",
    "version": "2.4",
    "short_name": "Accelerate Keyboard Browsing",
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "contextMenus",
        "storage"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Open Next Page",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "humane.min.js",
                "mousetrap.min.js",
                "element_searcher.js"
            ],
            "css": [
                "libnotify.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "manifest_version": 2
}