Optics
Provides connection and security information when visiting sites, especially sites using Cloudflare.
Τι είναι το Optics;
Το Optics είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Cloudflare, και η κύρια λειτουργία του είναι "Provides connection and security information when visiting sites, especially sites using Cloudflare.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Optics
Λήψη αρχείων επέκτασης Optics σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Optics is a browser extension created by Cloudflare, Inc. that provides connection and website information to the user about the website that they are visiting. If the website is also using Cloudflare to proxy its web traffic, Optics may also provide additional information about Cloudflare-specific capabilities being leveraged by the user. For more information, review the section "Optics Behavior Outline" below. By using Optics, you agree to Cloudflare’s Website and Online Services Terms of Use (https://www.cloudflare.com/website-terms/) and acknowledge Cloudflare’s Privacy Policy (https://www.cloudflare.com/privacypolicy/). ===================================================== Optics Behavior Outline: 1) The Optics browser extension locally inspects the incoming responses from websites visited in your browser and runs a small snippet of code in each webpage you visit solely to establish whether HTTP version 1, 1.1, 2, or 3 was used by the website. 2) The extension determines whether the website is being proxied by Cloudflare by evaluating the website's IP address and "server" response header against known valid Cloudflare configurations. 3a) If the website is not proxied by Cloudflare, the Optics extension will show you information about your connection to the website, such as the HTTP version, data compression format and Server IP that the website is using. 3b) If the website is proxied by Cloudflare, the Optics extension will show you information about your connection to the website, described above, as well as place a background request to a Cloudflare endpoint to determine additional information about your connection. An example of this additional information would be whether you are leveraging Cloudflare’s WARP or Gateway solutions to protect your browsing activity.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Optics |
ID | mdjgbjnbdnhneejmmaabmccfehigbjbe |
Επίσημο URL | https://chromewebstore.google.com/detail/optics/mdjgbjnbdnhneejmmaabmccfehigbjbe |
Περιγραφή | Provides connection and security information when visiting sites, especially sites using Cloudflare. |
Μέγεθος Αρχείου | 26.1 KB |
Αριθμός Εγκαταστάσεων | 842 |
Τρέχουσα Έκδοση | 1.0.1 (Zoey) |
Τελευταία Ενημέρωση | 2023-11-01 |
Ημερομηνία Δημοσίευσης | 2023-08-22 |
Αξιολόγηση | 5.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Cloudflare |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.cloudflare.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://community.cloudflare.com/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.cloudflare.com/privacypolicy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Optics", "author": "Cloudflare, Inc.", "version": "1.0.1.0", "version_name": "1.0.1 (Zoey)", "description": "Provides connection and security information when visiting sites, especially sites using Cloudflare.", "icons": { "128": "images\/cf-on-128.png", "48": "images\/cf-on-48.png", "32": "images\/cf-on-32.png", "16": "images\/cf-on-16.png" }, "permissions": [ "tabs", "clipboardWrite", "webRequest" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "optics-cs.js" ], "run_at": "document_start" } ], "action": { "default_icon": { "128": "images\/cf-off-128.png", "48": "images\/cf-off-48.png", "32": "images\/cf-off-32.png", "16": "images\/cf-off-16.png" }, "default_title": "Cloudflare Optics", "default_popup": "popup.html" }, "background": { "service_worker": "optics-svc.js" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |