Add this page to Trello
Add this page to Trello as new task
Co to jest Add this page to Trello?
Add this page to Trello to rozszerzenie Chrome opracowane przez https://www.muratayusuke.com, a jego główną funkcją jest „Add this page to Trello as new task”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Add this page to Trello
Pobierz pliki rozszerzeń Add this page to Trello w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Simple extension for Trello user to add current page to Trello as new task.
Podstawowe informacje o rozszerzeniu
Nazwa | Add this page to Trello |
ID | fjfljghieliggacelkamhfiiejncmjmi |
Oficjalny URL | https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi |
Opis | Add this page to Trello as new task |
Rozmiar pliku | 53.6 KB |
Liczba instalacji | 552 |
Aktualna Wersja | 0.105 |
Ostatnia Aktualizacja | 2015-06-06 |
Data Publikacji | 2015-06-05 |
Ocena | 3.33/5 Łącznie 3 Oceny |
Deweloper | https://www.muratayusuke.com |
Typ Płatności | free |
Obsługiwane Języki | 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:\/\/*\/*\/" ] } |