Trello Clean Mode
This extension strips down Trello boards to eliminate noise
Wat is Trello Clean Mode?
Trello Clean Mode is een Chrome-extensie ontwikkeld door ryan.m.tracey, en de belangrijkste functie is "This extension strips down Trello boards to eliminate noise".
Extensie Screenshots
Download het CRX-bestand van de extensie Trello Clean Mode
Download Trello Clean Mode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A Chrome extension that allows you to reduce the clutter of the Trello interface. You can remove member icons, labels, badges, stickers, and cover images.
Basisinformatie over de Extensie
Naam | |
ID | ikgnoihnldgoanbjpbefnoopncbdcofa |
Officiële URL | https://chrome.google.com/webstore/detail/trello-clean-mode/ikgnoihnldgoanbjpbefnoopncbdcofa |
Beschrijving | This extension strips down Trello boards to eliminate noise |
Bestandsgrootte | 75.08 KB |
Aantal Installaties | 100 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2017-05-25 |
Publicatiedatum | 2017-05-25 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | ryan.m.tracey |
Betalingswijze | free |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello Clean Mode", "description": "This extension strips down Trello boards to eliminate noise", "version": "1.1", "icons": { "128": "icon_100.png" }, "background": { "persistence": true, "scripts": [ "jquery.js", "main.js", "navigation-handler.js", "options.js" ] }, "content_scripts": [ { "css": [ "main.css" ], "js": [ "jquery.js", "dom.js" ], "matches": [ "https:\/\/*.trello.com\/*" ] } ], "permissions": [ "storage", "webNavigation", "tabs", "*:\/\/*\/*" ], "browser_action": { "default_title": "", "default_icon": "icon_100.png", "default_popup": "popup.html" } } |