NetSuite Links

Load N/* Modules , search via Shortcut and More.

NetSuite Linksคืออะไร?

NetSuite Links เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vatsal Chauhan และคุณลักษณะหลักของมันคือ "Load N/* Modules , search via Shortcut and More."

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

screenshot

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

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

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

                        No Longer in Development by me. Feel free to contribute on GitHub (use "Website" link on the web store) and I'll make sure to publish it here.

NOTE:  To change the shortcuts, type "chrome://extensions/shortcuts" in URL bar and look for this extension there.

This Extension Provides Following Features :
1. Load Client-Side modules in a page to be used in console (Shortcut -> Ctrl + m)
2. Log In to multiple instances at the same time without closing other instance. (Shortcut -> Ctrl + i)
3. Search SuiteAnswers (Shortcut -> Ctrl + Shift + s)
4. Open SuiteScript 2 modules page for currently opened instance. It solves the problem with bookmarks where you have to login for different instance each time.
5. Convert opened record to a very detailed JSON.
6. Provides suggestions for standard modules.
7. Would also load any AMD module in current instance's File Cabinet using "SuiteScripts/.js"                    

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

ชื่อ NetSuite Links NetSuite Links
ID igafblhljepfhmcccgklehhlbheclmob
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netsuite-links/igafblhljepfhmcccgklehhlbheclmob
คำอธิบาย Load N/* Modules , search via Shortcut and More.
ขนาดไฟล์ 51.08 KB
จำนวนการติดตั้ง 1,659
เวอร์ชันปัจจุบัน 3.3.3.3
อัปเดตครั้งล่าสุด 2021-03-31
วันที่เผยแพร่ 2020-05-26
คะแนน 4.64/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา Vatsal Chauhan
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/chauhanvats3/Netsuite-Links
URL หน้าช่วยเหลือ https://github.com/chauhanvats3/Netsuite-Links/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NetSuite Links",
    "version": "3.3.3.3",
    "description": "Load N\/* Modules , search via Shortcut and More.",
    "permissions": [
        "tabs",
        "*:\/\/*.app.netsuite.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "NetSuite Links"
    },
    "background": {
        "scripts": [
            "myScripts\/messagingBackbone.js",
            "shortcuts\/shortcut_handler.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.app.netsuite.com\/*"
            ],
            "run_at": "document_start",
            "exclude_globs": [
                "*workflowdesktop.nl*"
            ],
            "js": [
                "myScripts\/contentScrptMultiInstance.js"
            ],
            "css": [
                "shortcuts\/overlays.css"
            ]
        }
    ],
    "icons": {
        "16": "icons\/NewIconStar16.png",
        "32": "icons\/NewIconStar32.png",
        "48": "icons\/NewIconStar48.png",
        "128": "icons\/NewIconStar128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/code.jquery.com; object-src 'self'",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoGi8+m3TKvNDUgTOJMOwclfJZ2CzkGAyle6w8fzBMv05+tMcjuXsktYTKwFdHmHK39fXJvxHerctWwS0UCzrIi20KHqg+tEDlLg0qemwoQPBRZ8Ybo4JTbAZfjs1jysQa8m\/FkJtmlNN6rY5NWaI7u2vCYRvEL6mWBTWPHAplxyoH9aHIVIq5139mLgITxjJPzMqlqng5pCg1aQJKVmLTRdeIC5L4kbyTNsrCYS0PtlfjsbcN5ZKLVbzpkVBfhK3cSOan4WV417xl5+YMzOqCsOTEsivPt5LfFW9QFxpnK206f7CLNrnk3EzsgSyUHm1kuKhiFzKc9Geu3WVMNWqAwIDAQAB",
    "commands": {
        "load-module-shrtct": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Load Modules via Shortcut."
        },
        "multi-instance-shrtct": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+I"
            },
            "description": "Load Multiple Instances"
        },
        "search-suite-answers-shrtct": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Search SuiteAnswers via Shortcut."
        }
    }
}