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 هو إضافة Chrome تم تطويرها بواسطة Campbell Galon، والميزة الرئيسية لها هي "Refreshes your NetSuite portlets automatically at the interval of your choosing, without reloading the whole tab.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة FreshPortlet — NetSuite Portlet Refresher
قم بتنزيل ملفات الامتداد FreshPortlet — NetSuite Portlet Refresher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } } |