One-Click Trello

Instantly create a new Trello card with a link to the current page in just one click!

Τι είναι το One-Click Trello;

Το One-Click Trello είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον csdev, και η κύρια λειτουργία του είναι "Instantly create a new Trello card with a link to the current page in just one click!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης One-Click Trello

Λήψη αρχείων επέκτασης One-Click Trello σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        If you frequently create Trello cards linking to a website you visit - maybe to visit again later or remember something - One-click Trello is for you! Login once, setup the board and saving a link to the current page is just one click on the extension button away.

⚡ Quick and Snappy
Card creation is immediate, no waiting for Trello to load. Click the button and the page is saved!

⭐ Features and Available Options 
- Quickly open the created task via the notification to add more information
- Right-click anywhere on the page to create a task
- Include selected text in the created task or use it as a title
- Close the current tab at the same time (use it as a "read later" button)

This extension works well if you use an "Inbox" or "Read later" type list where you write down new things that you want to remember or re-visit. The "close tab" option can help: it automatically closes the tab if you hit the extension button. 

The extenstion button is too far away? Right-clicking anywhere on a page also shows a One-click send to Trello button! If you select text before right-clicking, it will be used as the card description.

📋 Changelog
3.0.0
- Updated to manifest v3 (rewrite of ca. 80% of the code)
- Fixed login issues for new users
- Added option to select card position in list
2.6.0
- Renamed extension to One-Click Trello
- Reworked options UI for future expandability and improved usability                    

Βασικές Πληροφορίες Επέκτασης

Όνομα One-Click Trello One-Click Trello
ID khhjgfllkgcfhhgocmiaknngnjncdbjm
Επίσημο URL https://chromewebstore.google.com/detail/one-click-trello/khhjgfllkgcfhhgocmiaknngnjncdbjm
Περιγραφή Instantly create a new Trello card with a link to the current page in just one click!
Μέγεθος Αρχείου 648 KB
Αριθμός Εγκαταστάσεων 1,830
Τρέχουσα Έκδοση 3.0.0
Τελευταία Ενημέρωση 2023-04-24
Ημερομηνία Δημοσίευσης 2020-05-14
Αξιολόγηση 3.60/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής csdev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/chrschorn/one-click-trello
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/chrschorn/one-click-trello/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "One-Click Trello",
    "description": "Instantly create a new Trello card with a link to the current page in just one click!",
    "version": "3.0.0",
    "background": {
        "service_worker": "\/service-worker.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png"
        },
        "default_title": "Create Card"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "options_page": "options.html",
    "permissions": [
        "notifications",
        "contextMenus",
        "activeTab",
        "storage",
        "sessions",
        "identity",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/api.trello.com\/*"
    ]
}