Add this page to Trello
Add this page to Trello as new task
Wat is Add this page to Trello?
Add this page to Trello is een Chrome-extensie ontwikkeld door https://www.muratayusuke.com, en de belangrijkste functie is "Add this page to Trello as new task".
Extensie Screenshots
Download het CRX-bestand van de extensie Add this page to Trello
Download Add this page to Trello-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
Simple extension for Trello user to add current page to Trello as new task.
Basisinformatie over de Extensie
Naam | Add this page to Trello |
ID | fjfljghieliggacelkamhfiiejncmjmi |
Officiële URL | https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi |
Beschrijving | Add this page to Trello as new task |
Bestandsgrootte | 53.6 KB |
Aantal Installaties | 552 |
Huidige Versie | 0.105 |
Laatst Bijgewerkt | 2015-06-06 |
Publicatiedatum | 2015-06-05 |
Beoordeling | 3.33/5 Totaal 3 Beoordelingen |
Ontwikkelaar | https://www.muratayusuke.com |
Betalingswijze | free |
Ondersteunde Talen | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "version": "0.105", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "jquery-2.1.3.min.js", "main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.3.min.js", "script.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "img\/icon.png", "default_title": "Add this page to Trello", "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*\/", "https:\/\/*\/*\/" ] } |