Add this page to Trello
Add this page to Trello as new task
Add this page to Trelloとは何ですか?
Add this page to Trelloはhttps://www.muratayusuke.comによって開発されたChromeの拡張機能で、その主な機能は「Add this page to Trello as new task」です。
拡張機能のスクリーンショット
Add this page to Trello拡張機能のCRXファイルをダウンロード
Add this page to Trello拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simple extension for Trello user to add current page to Trello as new task.
拡張機能の基本情報
名前 | Add this page to Trello |
ID | fjfljghieliggacelkamhfiiejncmjmi |
公式URL | https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi |
説明 | Add this page to Trello as new task |
ファイルサイズ | 53.6 KB |
インストール数 | 552 |
現在のバージョン | 0.105 |
最終更新日 | 2015-06-06 |
公開日 | 2015-06-05 |
評価 | 3.33/5 合計 3 レビュー |
開発者 | https://www.muratayusuke.com |
支払い方法 | free |
対応言語 | 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:\/\/*\/*\/" ] } |