Quicklink Chrome Extension

Speed up navigations by automatically prefetching in-viewport links ⚡

Quicklink Chrome Extensionとは何ですか?

Quicklink Chrome Extensionはquicklink-teamによって開発されたChromeの拡張機能で、その主な機能は「Speed up navigations by automatically prefetching in-viewport links ⚡」です。

拡張機能のスクリーンショット

screenshot

Quicklink Chrome Extension拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Quicklink Chrome Extension lets you navigate the web faster by prefetching any link that comes into the view. When clicking on them, pages are retrieved from the browser cache, instead of the network, highly improving navigation speed.

Functionality:

The extension injects and initializes Quicklink library in every site a user visits: https://github.com/GoogleChromeLabs/quicklink.
Once initialized, the library starts prefetching any links that come into the view.

It will prefetch at most 5 in-viewport links.

By default, the extension ignores URLs patterns that shouldn't be prefetched. For example, URLs containing "signup", "signin", "logout:, etc.

To add more patterns to ignore:

1. Click on the extension icon.
2. Pick  "Options" on the drop-down menu.

The settings screen lets you add additional URL patterns to ignore and to opt-out from Analytics.                    

拡張機能の基本情報

名前 Quicklink Chrome Extension Quicklink Chrome Extension
ID epmplkdcjhgigmnjmjibilpmekhgkbeg
公式URL https://chromewebstore.google.com/detail/quicklink-chrome-extensio/epmplkdcjhgigmnjmjibilpmekhgkbeg
説明 Speed up navigations by automatically prefetching in-viewport links ⚡
ファイルサイズ 715 KB
インストール数 1,362
現在のバージョン 1.3
最終更新日 2020-11-08
公開日 2020-01-19
評価 4.25/5 合計 8 レビュー
開発者 quicklink-team
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quicklink Chrome Extension",
    "version": "1.3",
    "description": "Speed up navigations by automatically prefetching in-viewport links \u26a1",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "helpers.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "quicklink.umd.js",
                "init.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "data\/conifg.json"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js; object-src 'self'",
    "manifest_version": 2
}