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是由mattogodoy开发的Chrome扩展程序,该扩展的主要功能是“This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!”。
扩展截图
下载Kitten Blocker扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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
} | |