Imgur Valentine's Day Replacer
Replaces Valentines day posts from imgur with the money cat...
什么是Imgur Valentine's Day Replacer?
Imgur Valentine's Day Replacer是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Replaces Valentines day posts from imgur with the money cat...”。
下载Imgur Valentine's Day Replacer扩展crx文件
下载Imgur Valentine's Day Replacer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
It's valentine's day season for the internet. If you just broke up with someone, and don't want to see posts with valentine's day in them on imgur use this plugin. It will replace the text and image with a cat.
扩展基本信息
名称 | Imgur Valentine's Day Replacer |
ID | hneogcmeohdbecpjecfmpnfpkdkmfjbf |
官方URL | https://chromewebstore.google.com/detail/imgur-valentines-day-repl/hneogcmeohdbecpjecfmpnfpkdkmfjbf |
简介 | Replaces Valentines day posts from imgur with the money cat... |
文件大小 | 21.19 KB |
安装次数 | 17 |
当前版本 | 1.0 |
更新时间 | 2016-02-05 |
上架时间 | 2016-02-05 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Imgur Valentine's Day Replacer", "description": "Replaces Valentines day posts from imgur with the money cat...", "version": "1.0", "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "replace valentine with cats" }, "content_scripts": [ { "matches": [ "*:\/\/imgur.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "*:\/\/imgur.com\/*", "webRequest", "tabs", "*:\/\/s.imgur.com\/*" ] } |