NetSuite Role Helper

Netsuite Role Helper

NetSuite Role Helperคืออะไร?

NetSuite Role Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Paul Lawton และคุณลักษณะหลักของมันคือ "Netsuite Role Helper"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NetSuite Role Helper

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

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

                        Groups Netsuite roles by company
Keyboard shortcut to open - ctrl(command)+shift+R

Primarily, this is aimed at people who have a lot of roles in NetSuite for different companies. 

To use, install the extension, head over to a NetSuite Page (reload page if you're already there) and open the extension. You should see list of roles grouped by company.

(If the keyboard shortcut doesn't work, you might need to head to chrome://extensions/shortcuts and redo.)

--------------------------------------------------------------------------------------------------------------------------------
Version 2.0
Resolves issues caused by new menu structure introduced in 2021.1 NetSuite update.
--------------------------------------------------------------------------------------------------------------------------------
Version 1.5 added
- Favourites
- Open in new tab
- Search
- General UI Improvements                    

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

ชื่อ NetSuite Role Helper NetSuite Role Helper
ID oejccmpdbofcfkmbcilipcdnjpkmehne
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netsuite-role-helper/oejccmpdbofcfkmbcilipcdnjpkmehne
คำอธิบาย Netsuite Role Helper
ขนาดไฟล์ 846 KB
จำนวนการติดตั้ง 779
เวอร์ชันปัจจุบัน 2.1
อัปเดตครั้งล่าสุด 2021-03-18
วันที่เผยแพร่ 2020-02-09
คะแนน 3.75/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Paul Lawton
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NetSuite Role Helper",
    "short_name": "NS Role Helper",
    "options_page": "options.html",
    "description": "Netsuite Role Helper",
    "version": "2.1",
    "permissions": [
        "*:\/\/*.netsuite.com\/*",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon48.png",
            "38": "img\/icon48.png"
        },
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+R",
                "windows": "Ctrl+Shift+R",
                "mac": "Command+Shift+R",
                "chromeos": "Ctrl+Shift+R",
                "linux": "Ctrl+Shift+R"
            }
        }
    },
    "web_accessible_resources": [
        "img\/icon128.png"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netsuite.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ]
}