Todoist Mod
A Plugin to add some functionality to todoist.com web application
Vad är Todoist Mod?
Todoist Mod är en Chrome-tillägg utvecklad av http://b2hq.com, och dess huvudfunktion är "A Plugin to add some functionality to todoist.com web application".
Tilläggsskärmbilder
Ladda ner Todoist Mod-förlängningens CRX-fil
Ladda ner Todoist Mod-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Todoist Mod is an *UNOFFICIAL* extension which should add some functionality to todoist.com site, some stuff I personally miss ... for now it adds the ability to define a default priority for tasks and some css tweaks. I plan to add more options as I stumble upon missing features ...
Grundläggande Information om Tillägg
Namn | |
ID | angcidioihngmbmhjnijbeghgnkagomd |
Officiell webbadress | https://chrome.google.com/webstore/detail/todoist-mod/angcidioihngmbmhjnijbeghgnkagomd |
Beskrivning | A Plugin to add some functionality to todoist.com web application |
Filstorlek | 63.07 KB |
Antal Installationer | 174 |
Aktuell Version | 0.1.1 |
Senast Uppdaterad | 2014-10-20 |
Publiceringsdatum | 2014-10-20 |
Betyg | 3.50/5 Totalt 2 Betyg |
Utvecklare | http://b2hq.com |
Betalningssätt | free |
Tilläggswebbplats | http://b2hq.com/ |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Todoist Mod", "description": "A Plugin to add some functionality to todoist.com web application", "version": "0.1.1", "permissions": [ "https:\/\/todoist.com\/", "http:\/\/todoist.com\/" ], "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/todoist.com\/*" ], "js": [ "jquery-2.1.1.min.js", "main.js" ], "css": [ "main.css" ] } ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |