Web Clipper for Trello

Clip web pages directly to Trello

Web Clipper for Trelloคืออะไร?

Web Clipper for Trello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oskarjakiela และคุณลักษณะหลักของมันคือ "Clip web pages directly to Trello"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Clipper for Trello

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

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

                        ★ Free forever and ever.
★ Secure authorization officially supported by Trello. Extension does not store your credentials.
★ User-friendly interface takes an inspiration straight from Trello to be more familiar.
★ Just 2 clicks to save the current tab as a new card in Trello.
★ Open source approach allows everyone to audit the code or submit a new feature.

Soon
★ Settings view to customize some of Web Clipper options.
★ Support more language.

Ideas
★ Clipping text selection and image from context menu.
★ Clipping entire page content.

Disclaimer
★ I do not affiliated, associated, authorized, endorsed by or in any way officially connected to Trello, Inc. (www.trello.com).
★ I do not the author of the design - all the credit belongs to Trello, Inc. (www.trello.com) and its great designers! I only use some part of it to make user experience as familiar as possible for Trello users. If you have only any copyright doubts, please let me know first.                    

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

ชื่อ Web Clipper for Trello Web Clipper for Trello
ID bgldhlkimfdidhgmndninednbehpcenk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-clipper-for-trello/bgldhlkimfdidhgmndninednbehpcenk
คำอธิบาย Clip web pages directly to Trello
ขนาดไฟล์ 119 KB
จำนวนการติดตั้ง 3,855
เวอร์ชันปัจจุบัน 0.3.1
อัปเดตครั้งล่าสุด 2016-06-19
วันที่เผยแพร่ 2016-06-19
คะแนน 3.43/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา oskarjakiela
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/oskarjakiela/trello-web-clipper
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Clipper for Trello",
    "short_name": "Web Clipper for Trello",
    "version": "0.3.1",
    "manifest_version": 2,
    "description": "Clip web pages directly to Trello",
    "author": "Oskar Jakie\u0142a ",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "images\/trello-16.png",
        "128": "images\/trello-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/trello-19.png",
            "38": "images\/trello-38.png"
        },
        "default_title": "Web Clipper for Trello",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*\/token\/approve"
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}