FreshPortlet — NetSuite Portlet Refresher

Refreshes your NetSuite portlets automatically at the interval of your choosing, without reloading the whole tab.

FreshPortlet — NetSuite Portlet Refresher란 무엇입니까?

FreshPortlet — NetSuite Portlet Refresher은(는) Campbell Galon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Refreshes your NetSuite portlets automatically at the interval of your choosing, without reloading the whole tab."입니다.

확장 프로그램 스크린샷

screenshot

FreshPortlet — NetSuite Portlet Refresher 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Robust client-side automation. Works for any role and any account type.

You can set a custom refresh interval between 2.5 minutes and 24 hours. In response to a request by Oracle NetSuite, refresh times more frequent than every 2.5 minutes are not possible due to the heavy server load this can cause.

You can also toggle the option to display an information header above the dashboard that states the current refresh status.

For any enhancement requests or questions, use the "Send feedback to developer" mailto link in the extension popup.

-----

DISCLAIMER: This extension is in no way affiliated with Oracle NetSuite. Neither Oracle NetSuite nor the developer bears any liability whatsoever in case of any problems or errors ensuing from this extension or its use. By installing this extension, you agree to this disclaimer.

PRIVACY POLICY: This extension does not capture or store any of your data. The only exception is the time interval you provide.                    

확장 프로그램 기본 정보

이름 FreshPortlet — NetSuite Portlet Refresher FreshPortlet — NetSuite Portlet Refresher
ID djphbeeppdbbljolikpmhcjbodaakanh
공식 URL https://chromewebstore.google.com/detail/freshportlet-%E2%80%94-netsuite-p/djphbeeppdbbljolikpmhcjbodaakanh
설명 Refreshes your NetSuite portlets automatically at the interval of your choosing, without reloading the whole tab.
파일 크기 110 KB
설치 횟수 514
현재 버전 1.6.1
최근 업데이트 2023-04-25
출시 날짜 2020-09-02
평점 5.00/5 총 3 개의 평점
개발자 Campbell Galon
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FreshPortlet \u2014 NetSuite Portlet Refresher",
    "description": "Refreshes your NetSuite portlets automatically at the interval of your choosing, without reloading the whole tab.",
    "version": "1.6.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netsuite.com\/app\/center\/card.nl*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "*:\/\/*.netsuite.com\/app\/center\/*"
    ],
    "browser_action": {
        "default_title": "FreshPortlet for NetSuite",
        "default_icon": "FreshPortlet.png",
        "default_popup": "NetsuiteRefresher.html"
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery-3.2.1.min.js"
        ]
    },
    "icons": {
        "128": "FreshPortlet.png"
    }
}