NB Custom Field Extension
An extension to add custom field functionality to NB's administrative interface.
什么是NB Custom Field Extension?
NB Custom Field Extension是由https://rededge.com开发的Chrome扩展程序,该扩展的主要功能是“An extension to add custom field functionality to NB's administrative interface.”。
扩展截图
下载NB Custom Field Extension扩展crx文件
下载NB Custom Field Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
+ Compatibility with next generation Nationbuilder Control Panel 扩展基本信息
| 名称 | |
| ID | kfaamhnapnommnldgngchbgdbhlehodg |
| 官方URL | https://chromewebstore.google.com/detail/nb-custom-field-extension/kfaamhnapnommnldgngchbgdbhlehodg |
| 简介 | An extension to add custom field functionality to NB's administrative interface. |
| 文件大小 | 754 KB |
| 安装次数 | 26 |
| 当前版本 | 1.7.0 |
| 更新时间 | 2019-06-03 |
| 上架时间 | 2019-06-03 |
| 开发者 | https://rededge.com |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "NB Custom Field Extension",
"description": "An extension to add custom field functionality to NB's administrative interface.",
"version": "1.7.0",
"icons": {
"16": "img\/favicon.png",
"48": "img\/logo-sm.png",
"128": "img\/logo.png"
},
"permissions": [
"storage",
"*:\/\/*.nationbuilder.com\/*",
"*:\/\/*.nbstaging.net\/*",
"*:\/\/*.rededge.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.nationbuilder.com\/*",
"*:\/\/*.nbstaging.net\/*"
],
"js": [
"js\/jquery.min.js",
"js\/jquery-ui.min.js",
"js\/validator.min.js",
"js\/moment.js",
"js\/pikaday.js",
"js\/tinymce\/tinymce.min.js",
"js\/tinymce\/plugins\/textcolor\/plugin.min.js",
"js\/tinymce\/themes\/modern\/theme.min.js",
"js\/fine-uploader\/fine-uploader.js",
"js\/script.js"
],
"css": [
"css\/theme.css",
"css\/pikaday.css",
"js\/tinymce\/skins\/lightgray\/skin.min.css",
"css\/jquery-ui.theme.css",
"js\/fine-uploader\/fine-uploader-new.min.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"js\/jquery.min.map",
"js\/tinymce\/*",
"js\/fine-uploader\/*"
]
} | |