Frappe/ERPNext Tools

Simple Extension that help you work & develop with Frappe/ERPNext Framework

What is Frappe/ERPNext Tools?

Frappe/ERPNext Tools is a Chrome extension developed by Imad Abdou, and its main feature is "Simple Extension that help you work & develop with Frappe/ERPNext Framework".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Frappe/ERPNext Tools Extension CRX File

Download Frappe/ERPNext Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Get Started:
 Install the extension and reload your ERPNext site

Features:

- Support Frappe v13, v14
- Show & change hidden fields in any DocType
- Force Save Non changed forms, Submittable forms & Submitted forms (re submit)
- Highlight the hidden and custom fields in any DocType
- Show forms fields & tables fields details
- Fast Access to Customize Form/DocType for field Options of type Link, Table & Table MultiSelect
- Copy/Insert any child table all/specific rows from/to any ERPNext site
- Copy/Insert any Customize Form custom fields from/to any ERPNext site
- Copy/Insert Doctypes data between ERPNext Sites
- Simple CSV Files bulk import (useful also for triggering python db apis, webhooks, server scripts, etc..) 


Credits
- Frappe Framework - https://frappeframework.com
- PapaParse - https://www.papaparse.com                    

Extension Basic Information

Name Frappe/ERPNext Tools Frappe/ERPNext Tools
ID mfpfeokebfgddkaemagjigbjkmohmpab
Official URL https://chromewebstore.google.com/detail/frappeerpnext-tools/mfpfeokebfgddkaemagjigbjkmohmpab
Description Simple Extension that help you work & develop with Frappe/ERPNext Framework
File Size 44.6 KB
Installation Count 373
Current Version 1.1.6
Last Updated 2023-08-17
Publish Date 2022-08-15
Rating 5.00/5 Total 3 Ratings
Developer Imad Abdou
Email [email protected]
Payment Type free
Extension Website https://github.com/ascorbic-acid/frappe_chrome_dev_utils
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Frappe\/ERPNext Tools",
    "description": "Simple Extension that help you work & develop with Frappe\/ERPNext Framework",
    "version": "1.1.6",
    "icons": {
        "16": "logo\/logo.png",
        "48": "logo\/logo.png",
        "128": "logo\/logo.png"
    },
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/app\/*",
        "https:\/\/*\/app\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js",
                "frappe\/papaparse.min.js"
            ],
            "matches": [
                "http:\/\/*\/app\/*",
                "https:\/\/*\/app\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "logo\/logo.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}