Terrapin Works Tools

Tools to augment the ICMP platform & PaperCut.

Terrapin Works Toolsคืออะไร?

Terrapin Works Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://terrapinworks.umd.edu และคุณลักษณะหลักของมันคือ "Tools to augment the ICMP platform & PaperCut."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Terrapin Works Tools

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

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

                        ** Terrapin Works Staff Only **

Adds additional features to Chrome to move more quickly when in the ICMP & adds features to PaperCut necessary for Terrapin Works' operations.

=== Current features ===

PaperCut
• Modifies PaperCut's Web Cashier interface to support standardized data entry.

Google Chrome Omnibox
• Adds an Omnibox command to search the ICMP by request number.

=== Examples ===

Google Chrome Omnibox
• Type "ic" in the Omnibox and hit [TAB], then type the ICMP request number and hit [Enter].

Submit feature requests or issues via internal Slack to the Terrapin Works Software Team.

=== Changelog ===

2.3.4
• Add Z18 to interface.

2.3.3
• Fix comment field to actually submit comment with transaction.

2.3.2
• Changed placeholder text to clarify that a Project Name OR PI is needed, not both.

2.3.1
• Added training link.

2.3.0
• Add additional inputs for service-based items.
• Separate service-based items & product-based items for clarity.

2.2.4
• Changed MIC request nomenclature to reflect current standard.

2.2.2
• Added logic to prevent PaperCut comment without MIC request number when selecting a MakerBot print.

2.0.0
• Added PaperCut functionality.
• Removed deprecated code.                    

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

ชื่อ Terrapin Works Tools Terrapin Works Tools
ID jmdohdlejbjboginedkkocjeebnfmibn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/terrapin-works-tools/jmdohdlejbjboginedkkocjeebnfmibn
คำอธิบาย Tools to augment the ICMP platform & PaperCut.
ขนาดไฟล์ 51.6 KB
จำนวนการติดตั้ง 84
เวอร์ชันปัจจุบัน 2.3.4
อัปเดตครั้งล่าสุด 2019-12-02
วันที่เผยแพร่ 2019-12-02
ผู้พัฒนา https://terrapinworks.umd.edu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://terrapinworks.umd.edu
URL หน้านโยบายความเป็นส่วนตัว https://umd.edu/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Terrapin Works Tools",
    "short_name": "TW Tools",
    "author": "UMD Terrapin Works",
    "description": "Tools to augment the ICMP platform & PaperCut.",
    "version": "2.3.4",
    "minimum_chrome_version": "9",
    "manifest_version": 2,
    "omnibox": {
        "keyword": "ic"
    },
    "icons": {
        "16": "Icon-16.png",
        "48": "Icon-48.png",
        "128": "Icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/umd.innovationcenter.makerbot.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/portal.tw.umd.edu\/*"
            ],
            "js": [
                "checkinstall.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/maker.umd.edu\/app*"
            ],
            "js": [
                "includes\/jquery-3.4.1.min.js",
                "webcashier.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "webcashier.html"
    ],
    "permissions": [
        "activeTab"
    ]
}