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ファイルをダウンロード

Quicken拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
}