TablePlus

Transform and paste tables from your clipboard, especially into Jira.

TablePlusคืออะไร?

TablePlus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Miguel Gualdron และคุณลักษณะหลักของมันคือ "Transform and paste tables from your clipboard, especially into Jira."

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

screenshot

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

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

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

                        Transforms tabular text stored in the clipboard to generate markup text useful in applications such as Jira.

TablePlus adds entries to the context (right-click) menu in Google Chrome, so that when you are entering text you can do some enhanced pasting:

* Paste Jira Table Markup
* Paste Jira Transposed Table Markup
* Paste Jira Escaped Markup

If you work regularly with tabular data, you will find that TablePlus makes it much easier to create clear and readable comments, eliminating the need to build the markup text by manually typing it in, or generating it with external applications.

You can find more detailed examples at the home website below, along with links to download the source code, log bug reports, or make new feature requests.

During installation, Chrome may warn you that the extension can collect all site data, but it doesn't actually do that.  You are free to look at the source code.

Known Issues:
* Tabular data containing line-feeds within cells may not render properly.                    

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

ชื่อ TablePlus TablePlus
ID fhgekekdakigpdfdppllmpackoklhklb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tableplus/fhgekekdakigpdfdppllmpackoklhklb
คำอธิบาย Transform and paste tables from your clipboard, especially into Jira.
ขนาดไฟล์ 54.8 KB
จำนวนการติดตั้ง 162
เวอร์ชันปัจจุบัน 0.0.6
อัปเดตครั้งล่าสุด 2016-09-28
วันที่เผยแพร่ 2016-09-28
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Miguel Gualdron
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mgualdron.github.io/TablePlus
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "TablePlus",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "permissions": [
        "contextMenus",
        "clipboardRead"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "bower_components\/toastr\/toastr.css"
            ],
            "js": [
                "scripts\/contentscript.js",
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/toastr\/toastr.min.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}