Algorithm to Wizard
Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus
什么是Algorithm to Wizard?
Algorithm to Wizard是由chris开发的Chrome扩展程序,该扩展的主要功能是“Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus”。
扩展截图
下载Algorithm to Wizard扩展crx文件
下载Algorithm to Wizard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
(should) take(s) instances of the word 'algorithm' and replaces it with 'wizard'.
code here: https://github.com/peteyreplies/algorithm-to-wizard
based on: https://github.com/hank/cloud-to-butt
update 8/20/15: fixed *most* 'an wizard' instances, although still breaking on some formatted ones for reasons that are as yet unclear to me
update 8/22/15: incorporated @s2tephen bug fix 扩展基本信息
| 名称 | |
| ID | paheefgkiimahbclagfhcnehdiengfkb |
| 官方URL | https://chromewebstore.google.com/detail/algorithm-to-wizard/paheefgkiimahbclagfhcnehdiengfkb |
| 简介 | Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus |
| 文件大小 | 3.7 KB |
| 安装次数 | 19 |
| 当前版本 | 1.3 |
| 更新时间 | 2015-08-22 |
| 上架时间 | 2015-08-22 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | chris |
| 付费类型 | free |
| 扩展官网 | http://twitter.com/peteyreplies |
| 帮助页面URL | https://github.com/peteyreplies/algorithm-to-wizard |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Algorithm to Wizard",
"version": "1.3",
"description": "Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end"
}
]
} | |