NetSuite Role Helper

Netsuite Role Helper

NetSuite Role Helper란 무엇입니까?

NetSuite Role Helper은(는) Paul Lawton에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Netsuite Role Helper"입니다.

확장 프로그램 스크린샷

screenshot

NetSuite Role Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}