Quicklink Chrome Extension
Speed up navigations by automatically prefetching in-viewport links ⚡
Quicklink Chrome Extension क्या है?
Quicklink Chrome Extension quicklink-team द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Speed up navigations by automatically prefetching in-viewport links ⚡"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Quicklink Chrome Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } |