ACF Tools
Advanced Custom Fields code made simple! 🙌
什麼是ACF Tools?
ACF Tools是由RostiMelk開發的Chrome擴展程式,該擴展的主要功能是“Advanced Custom Fields code made simple! 🙌”。
擴展截圖
下載ACF Tools擴展crx文件
下載ACF Tools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension is made to be used with Wordpress and the Wordpress plugin Advanced Custom Fields.
Features:
- Copy code for field with the matching selected setting and field name
- Quickly copy an ACF field name by just clicking the field name
- Quickly open documentation for field by just clicking the field type
- Check a fields field name when editing a post or a page
Extension source code:
https://github.com/RostiMelk/ACF-Tools
Note that this extension is in no way affiliated with Advanced Custom Fields. 擴展基本資訊
| 名稱 | |
| ID | ogliegjmpalokmaaeckcdgbhdeedcnmf |
| 官方網址 | https://chromewebstore.google.com/detail/acf-tools/ogliegjmpalokmaaeckcdgbhdeedcnmf |
| 簡介 | Advanced Custom Fields code made simple! 🙌 |
| 檔案大小 | 73.01 KB |
| 安裝次數 | 4,405 |
| 目前版本 | 3.0.2 |
| 更新時間 | 2021-04-22 |
| 上架時間 | 2020-06-30 |
| 評分 | 5.00/5 共 21 次評分 |
| 開發者 | RostiMelk |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/RostiMelk/ACF-Tools |
| 支援的語言 | de,en,no,sv |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ACF Tools",
"version": "3.0.2",
"description": "__MSG_extDescription__",
"default_locale": "en",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"activeTab",
"storage"
],
"browser_action": {
"default_popup": "static\/popup.html",
"default_title": "Toggle ACF Tools settings",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/wp-admin\/*",
"*:\/\/*\/**\/wp-admin\/*"
],
"css": [
"styles\/style.css",
"styles\/modal.css",
"styles\/highlight.css"
],
"js": [
"lib\/jquery-3.5.0.min.js",
"lib\/highlight.pack.js",
"scripts\/app.js",
"scripts\/user-settings.js",
"scripts\/misc.js",
"scripts\/fields.js",
"scripts\/i18n.js"
]
}
],
"web_accessible_resources": [
"static\/modals\/*"
]
} | |