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
官方網址 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
電子郵箱 [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
}