Steam Cleaner
The first extension that I made.
什么是Steam Cleaner?
Steam Cleaner是由Adam Shaw开发的Chrome扩展程序,该扩展的主要功能是“The first extension that I made.”。
扩展截图
下载Steam Cleaner扩展crx文件
下载Steam Cleaner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Cleans up Steam Greenlight pages (removing extra banners) and adds "Vote Down and Next item" button. More features to come in the future.
扩展基本信息
名称 | |
ID | blocallakhfbheckclfcjhechmkpeibe |
官方URL | https://chromewebstore.google.com/detail/steam-cleaner/blocallakhfbheckclfcjhechmkpeibe |
简介 | The first extension that I made. |
文件大小 | 16.21 KB |
安装次数 | 394 |
当前版本 | 1.0 |
更新时间 | 2012-11-15 |
上架时间 | 2012-11-14 |
评分 | 3.50/5 共2次评分 |
开发者 | Adam Shaw |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Steam Cleaner", "version": "1.0", "manifest_version": 2, "description": "The first extension that I made.", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.steamcommunity.com\/*", "http:\/\/steamcommunity.com\/*", "http:\/\/*.steampowered.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ] } |