Salesforce AutoSave

Autosave and retrieve code for Apex Classes, Apex Triggers, VF Pages, VF Components in Salesforce

Salesforce AutoSaveคืออะไร?

Salesforce AutoSave เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Arpan Kumar Patra และคุณลักษณะหลักของมันคือ "Autosave and retrieve code for Apex Classes, Apex Triggers, VF Pages, VF Components in Salesforce"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce AutoSave

ดาวน์โหลดไฟล์ส่วนขยาย Salesforce AutoSave ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        INTRODUCTION

The "Salesforce Autosave" chrome extension is a developer tool to autosave and recover code in Apex Classes, Triggers, Visualforce Pages and Components from save failure because of organization lock from deployments, internet unavailability and/or host of other reasons that result in code loss.

Get over CTRL + A, CTRL + C and CTRL + S approach! Now the extension will autosave the code in the background while you work on classes, triggers, pages or components without having to worry about loss of code.

The default autosave time is set to 60 seconds. It allows user to set custom autosave time (between 5 to 1800 seconds)


FEATURES :

Salesforce Autosave has the below features :

- Autosave the code for Class/Trigger/Page/Component in the extension at default setting of 60 seconds. 

- Autosave the code for Class/Trigger/Page/Component in the extension on  Save/QuickSave/Logout events on Salesforce edit page.
 
- Recover autosaved code for Class/Trigger/Page/Component from the extension.

- Work in online/offline mode and Autosave the code in the extension.


HOW TO AUTOSAVE CODE :

The extension works only on edit page of Apex classes, triggers, VF Pages and Components. On installing the extension, you will be able to see Salesforce ARC icon right beside the address bar or in the addon toolbar. 

After installation of the extension, the edit page on Apex class, triggers, VF pages and components will display an additional section below the API name of class/trigger/page/component indicating the autosave status. This text indicates the time left before next autosave (in seconds), status of autosave (success/failure) and warning messages.

The extension does not validate the code syntax correctness, it commits the as-is code to the extension. 


HOW TO RECOVER CODE 

The Autosaved data for any Class/Trigger/Page/Component is maintained in the extension across browsing sessions. The autosaved data is recoverable directly in the edit page code editor of any class/trigger/page/component by clicking on the Salesforce Autosave extension icon besides the address bar or the addon toolbar (in red borders, refer screenshot) . If no autosaved data is available, it gives an alert message indicating the same.

For any comments/suggestions/queries, please feel free to drop me a mail at : [email protected]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Salesforce AutoSave Salesforce AutoSave
ID ikhffihfnmfolponkdamnbognhnljclg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/salesforce-autosave/ikhffihfnmfolponkdamnbognhnljclg
คำอธิบาย Autosave and retrieve code for Apex Classes, Apex Triggers, VF Pages, VF Components in Salesforce
ขนาดไฟล์ 182 KB
จำนวนการติดตั้ง 44
เวอร์ชันปัจจุบัน 4.0
อัปเดตครั้งล่าสุด 2019-07-01
วันที่เผยแพร่ 2019-06-30
คะแนน 4.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Arpan Kumar Patra
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "name": "Salesforce AutoSave",
    "version": "4.0",
    "description": "Autosave and retrieve code for Apex Classes, Apex Triggers, VF Pages, VF Components in Salesforce",
    "manifest_version": 2,
    "icons": {
        "32": "img\/icons\/32.png",
        "48": "img\/icons\/48.png",
        "64": "img\/icons\/64.png",
        "128": "img\/icons\/128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Arpan Kumar Patra",
    "browser_action": {
        "default_icon": "img\/autosave.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.js",
                "js\/contentscript.js"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/*\/e?retURL=*",
                "https:\/\/*.salesforce.com\/*?retURL=*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "js\/jquery.js",
        "img\/*"
    ]
}