Metal Gear Solid Words Swap
Changes words in the websites you visit to be Metal Gear themed
什么是Metal Gear Solid Words Swap?
Metal Gear Solid Words Swap是由actual_vale开发的Chrome扩展程序,该扩展的主要功能是“Changes words in the websites you visit to be Metal Gear themed”。
扩展截图
下载Metal Gear Solid Words Swap扩展crx文件
下载Metal Gear Solid Words Swap扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | oakehbnanolbmgdbocehdljlbdgknblc |
官方URL | https://chrome.google.com/webstore/detail/metal-gear-solid-words-sw/oakehbnanolbmgdbocehdljlbdgknblc |
简介 | Changes words in the websites you visit to be Metal Gear themed |
文件大小 | 48.88 KB |
安装次数 | 35 |
当前版本 | 1.0.1 |
更新时间 | 2017-07-23 |
上架时间 | 2017-07-23 |
评分 | 1.00/5 共2次评分 |
开发者 | actual_vale |
付费类型 | free |
扩展官网 | http://mgsshitpostgenerator.tumblr.com/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Metal Gear Solid Words Swap", "description": "Changes words in the websites you visit to be Metal Gear themed", "version": "1.0.1", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "wordsswap.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "128": "icon.png" }, "permissions": [ "activeTab", "https:\/\/raw.githubusercontent.com\/actualvale\/mgswordswap\/master\/wordsswap.json", "storage" ] } |