Terrapin Works Label Printing
One click printing for the Dymo
What is Terrapin Works Label Printing?
Terrapin Works Label Printing is a Chrome extension developed by blepfo, and its main feature is "One click printing for the Dymo".
Extension Screenshots
Download Terrapin Works Label Printing Extension CRX File
Download Terrapin Works Label Printing extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Internal chrome extension for Terrapin Works employees at the University of Maryland. This extension allows one-click printing of labels for print jobs. Just navigate to a job page in the Innovation Center platform, click the extension icon to popup the page shown in the screenshot, an click the button to print.
Extension Basic Information
Name | Terrapin Works Label Printing |
ID | hlmhjakokajncnencjkhieokhpkdilfl |
Official URL | https://chromewebstore.google.com/detail/terrapin-works-label-prin/hlmhjakokajncnencjkhieokhpkdilfl |
Description | One click printing for the Dymo |
File Size | 29.14 KB |
Installation Count | 615 |
Current Version | 1.3.4 |
Last Updated | 2017-01-10 |
Publish Date | 2017-01-10 |
Rating | 4.11/5 Total 9 Ratings |
Developer | blepfo |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Terrapin Works Label Printing", "short_name": "TW Label Printing", "description": "One click printing for the Dymo", "version": "1.3.4", "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "128": "images\/icon_128.png" }, "page_action": { "default_icon": "images\/icon_19.png", "default_popup": "popup.html", "default_title": "Terrapin Works Label Printing" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/umd.innovationcenter.makerbot.com\/jobs\/*" ], "js": [ "contentscript.js" ] } ], "permissions": [ "activeTab", "tabs", "*:\/\/umd.innovationcenter.makerbot.com\/jobs\/*", "*:\/\/192.168.1.92\/*" ] } |