ACF Tools

Advanced Custom Fields code made simple! 🙌

ACF Tools là gì?

ACF Tools là một tiện ích mở rộng Chrome được phát triển bởi RostiMelk, và tính năng chính của nó là "Advanced Custom Fields code made simple! 🙌".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ACF Tools

Tải xuống các tệp mở rộng ACF Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ACF Tools ACF Tools
ID ogliegjmpalokmaaeckcdgbhdeedcnmf
URL Chính Thức https://chromewebstore.google.com/detail/acf-tools/ogliegjmpalokmaaeckcdgbhdeedcnmf
Mô tả Advanced Custom Fields code made simple! 🙌
Kích Thước Tệp 73.01 KB
Số Lần Cài Đặt 4,405
Phiên Bản Hiện Tại 3.0.2
Cập Nhật Lần Cuối 2021-04-22
Ngày Phát Hành 2020-06-30
Đánh Giá 5.00/5 Tổng số 21 Đánh Giá
Nhà Phát Triển RostiMelk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/RostiMelk/ACF-Tools
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}