Kitten Blocker
This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!
Τι είναι το Kitten Blocker;
Το Kitten Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mattogodoy, και η κύρια λειτουργία του είναι "This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Kitten Blocker
Λήψη αρχείων επέκτασης Kitten Blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Tired of seeing cat pictures all around the internet? Fear no more! Here comes the solution. New in version 0.3: ============== - Updated web URL New in version 0.2: ============== - Switch to enable / disable extension. - Counter badge for replaced kitties. - Runs in background. Now you don't have to click the icon to hide the cats. - Detects changes in the page and blocks any new kitties. - Keeps the original picture size.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Kitten Blocker |
ID | bhlfekkbgcbmlnfclgklmbdmodbhbdla |
Επίσημο URL | https://chromewebstore.google.com/detail/kitten-blocker/bhlfekkbgcbmlnfclgklmbdmodbhbdla |
Περιγραφή | This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere! |
Μέγεθος Αρχείου | 99.94 KB |
Αριθμός Εγκαταστάσεων | 57 |
Τρέχουσα Έκδοση | 0.3 |
Τελευταία Ενημέρωση | 2022-09-25 |
Ημερομηνία Δημοσίευσης | 2014-11-05 |
Αξιολόγηση | 5.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | mattogodoy |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Kitten Blocker", "short_name": "Kitten Blocker", "version": "0.3", "homepage_url": "https:\/\/matto.io", "description": "This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!", "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "img\/icon_16.png", "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "browser_action": { "default_icon": { "19": "img\/icon_19.png", "38": "img\/icon_38.png" }, "default_title": "Kitten Blocker", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "vendor\/jquery.min.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "storage" ], "web_accessible_resources": [ "img\/*" ], "manifest_version": 2 } |