ACF Tools

Advanced Custom Fields code made simple! 🙌

ACF Tools란 무엇입니까?

ACF Tools은(는) RostiMelk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Advanced Custom Fields code made simple! 🙌"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ACF Tools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 ACF Tools ACF Tools
ID ogliegjmpalokmaaeckcdgbhdeedcnmf
공식 URL 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\/*"
    ]
}