FFBE Preview
View FFBE Builds inline from FFBE Equip.
什么是FFBE Preview?
FFBE Preview是由Null Parameter开发的Chrome扩展程序,该扩展的主要功能是“View FFBE Builds inline from FFBE Equip.”。
扩展截图
下载FFBE Preview扩展crx文件
下载FFBE Preview扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
FFBE Equip links on Reddit are now hoverable, so you can see the builds without leaving Reddit! v0.4 Updates --------------------- Support NV in images and CSS. v0.3 Updates --------------------- Pull old Reddit CSS into new Reddit. v0.2 Updates ---------------------- Start to support older builds by loading item data. Fix some hovering issues.
扩展基本信息
名称 | FFBE Preview |
ID | dgjfajlegfjhcbhdggbeaacfkdcalokk |
官方URL | https://chromewebstore.google.com/detail/ffbe-preview/dgjfajlegfjhcbhdggbeaacfkdcalokk |
简介 | View FFBE Builds inline from FFBE Equip. |
文件大小 | 76.96 KB |
安装次数 | 247 |
当前版本 | 0.4 |
更新时间 | 2020-09-21 |
上架时间 | 2020-02-11 |
评分 | 5.00/5 共2次评分 |
开发者 | Null Parameter |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/NullParameter/ffbebuilds |
帮助页面URL | https://github.com/NullParameter/ffbebuilds/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FFBE Preview", "short_name": "FFBE Preview", "manifest_version": 2, "description": "View FFBE Builds inline from FFBE Equip.", "version": "0.4", "homepage_url": "https:\/\/github.com\/NullParameter\/ffbebuilds", "browser_action": { "default_icon": "icon.png", "default_title": "FFBE Preview" }, "icons": { "128": "icon.png" }, "background": { "scripts": [ "app\/lib\/jquery-3.2.1.min.js", "app\/lib\/browser-polyfill.min.js", "app\/scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/*" ], "js": [ "app\/lib\/jquery-3.2.1.min.js", "app\/lib\/browser-polyfill.min.js", "app\/lib\/exportBuildAsImage.js", "app\/scripts\/ffbebuilds.js" ], "css": [ "app\/styles\/ffbebuilds.css" ] } ], "permissions": [ "storage", "https:\/\/*\/*", "unlimitedStorage" ], "web_accessible_resources": [ "app\/scripts\/*" ] } |