Kitten Blocker
This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!
Kitten Blocker là gì?
Kitten Blocker là một tiện ích mở rộng Chrome được phát triển bởi mattogodoy, và tính năng chính của nó là "This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Kitten Blocker
Tải xuống các tệp mở rộng Kitten Blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Kitten Blocker |
ID | bhlfekkbgcbmlnfclgklmbdmodbhbdla |
URL Chính Thức | https://chromewebstore.google.com/detail/kitten-blocker/bhlfekkbgcbmlnfclgklmbdmodbhbdla |
Mô tả | This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere! |
Kích Thước Tệp | 99.94 KB |
Số Lần Cài Đặt | 57 |
Phiên Bản Hiện Tại | 0.3 |
Cập Nhật Lần Cuối | 2022-09-25 |
Ngày Phát Hành | 2014-11-05 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | mattogodoy |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |