GIF Blocker
Block GIF and WebP animation images on HTML pages to reduce bandwidth and resource usage
Τι είναι το GIF Blocker;
Το GIF Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rynu.smith, και η κύρια λειτουργία του είναι "Block GIF and WebP animation images on HTML pages to reduce bandwidth and resource usage".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GIF Blocker
Λήψη αρχείων επέκτασης GIF Blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension blocks animated images (*.GIF and *.WebP formats by default) to save bandwidth usage and improve page loading performance. The extension can get enabled or disabled from the action button. Once the extension is enabled, no animated resource is fetched from the internet. Instead, the remote image is replaced by a local alternative. When blocking mode is enabled, the user can still selectively load blocked images from the right-click context menu over the image context. How does it work: This extension redirects all the animated image requests to the local SVG image. This way, there is no server request at all (not even the HEAD request). Features: You can unblock an image from right-click context menu. The unblocking stays for this browser session. Or until the extension is disabled by pressing the toolbar button. Reduce bandwidth usage significantly by preventing any animated image loading. Animated images use a large amount of bandwidth compared to normal images. Optionally disable the extension for WebP or GIF image format. Optionally block video elements from auto-playing Optionally block CSS animation
Βασικές Πληροφορίες Επέκτασης
Όνομα | GIF Blocker |
ID | ahkidgegbmbnggcnmejhobepkaphkfhl |
Επίσημο URL | https://chromewebstore.google.com/detail/gif-blocker/ahkidgegbmbnggcnmejhobepkaphkfhl |
Περιγραφή | Block GIF and WebP animation images on HTML pages to reduce bandwidth and resource usage |
Μέγεθος Αρχείου | 51.42 KB |
Αριθμός Εγκαταστάσεων | 3,425 |
Τρέχουσα Έκδοση | 0.2.1 |
Τελευταία Ενημέρωση | 2022-12-29 |
Ημερομηνία Δημοσίευσης | 2019-10-30 |
Αξιολόγηση | 3.68/5 Συνολικά 34 Αξιολογήσεις |
Προγραμματιστής | rynu.smith |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://webextension.org/listing/gif-blocker.html |
Διεύθυνση URL της Σελίδας Βοήθειας | https://webextension.org/listing/gif-blocker.html |
URL της Σελίδας Πολιτικής Απορρήτου | https://add0n.com/policies/rynu.smith.txt |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GIF Blocker", "description": "Block GIF and WebP animation images on HTML pages to reduce bandwidth and resource usage", "version": "0.2.1", "manifest_version": 3, "permissions": [ "storage", "activeTab", "scripting", "contextMenus", "declarativeNetRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_gif", "enabled": true, "path": "ruleset\/ruleset_gif.json" }, { "id": "ruleset_webp", "enabled": true, "path": "ruleset\/ruleset_webp.json" } ] }, "homepage_url": "https:\/\/webextension.org\/listing\/gif-blocker.html", "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "data\/inject.js" ], "run_at": "document_start", "match_about_blank": true, "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "\/data\/block.svg" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" }, "action": { "default_title": "GIF Blocker (enabled)" }, "options_ui": { "page": "data\/options\/index.html" }, "commands": { "_execute_action": { "description": "Press the action button" } } } |