Trello Checklist Plus
Extends the Trello Checklist with usefull functions
Was ist Trello Checklist Plus?
Trello Checklist Plus ist eine Chrome-Erweiterung, die von b.geissler89 entwickelt wurde, und ihr Hauptmerkmal ist "Extends the Trello Checklist with usefull functions".
Erweiterungsscreenshots
Trello Checklist Plus-Erweiterungs-CRX-Datei herunterladen
Laden Sie Trello Checklist Plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
-Feature to extrude a Checklist Item into a own Card and create a back-link without deleting the actual. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lgpellhflojpkpbhiehgfeoiodbhpeil |
| Offizielle URL | https://chromewebstore.google.com/detail/trello-checklist-plus/lgpellhflojpkpbhiehgfeoiodbhpeil |
| Beschreibung | Extends the Trello Checklist with usefull functions |
| Dateigröße | 311 KB |
| Installationsanzahl | 53 |
| Aktuelle Version | 0.0.12 |
| Letztes Update | 2016-07-20 |
| Veröffentlichungsdatum | 2016-07-20 |
| Bewertung | 2.88/5 Insgesamt 8 Bewertungen |
| Entwickler | b.geissler89 |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.web-ben.de |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Trello Checklist Plus",
"author": "Benjamin Gei\u00dfler",
"short_name": "TC+",
"version": "0.0.12",
"manifest_version": 2,
"description": "Extends the Trello Checklist with usefull functions",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"background": {
"page": "index.html"
},
"content_security_policy": "script-src 'self' https:\/\/api.trello.com; object-src 'self'",
"content_scripts": [
{
"matches": [
"http:\/\/trello.com\/*",
"https:\/\/trello.com\/*"
],
"exclude_matches": [
"https:\/\/trello.com\/1\/authorize?*",
"http:\/\/trello.com\/1\/authorize?*"
],
"js": [
"bower_components\/jQuery\/dist\/jquery.js",
"scripts\/contentscript.js"
]
},
{
"matches": [
"https:\/\/trello.com\/1\/OAuthAuthorizeToken*"
],
"js": [
"background\/inject-workaround.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"background\/chrome_ex_oauth.html"
],
"permissions": [
"tabs",
"https:\/\/trello.com\/1\/OAuthGetRequestToken",
"https:\/\/trello.com\/1\/OAuthAuthorizeToken",
"https:\/\/trello.com\/1\/OAuthGetAccessToken"
]
} | |