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 ⚡"입니다.
확장 프로그램 스크린샷
Quicklink Chrome Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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 |
이메일 | [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 } |