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. 擴展基本資訊
| 名稱 | |
| ID | fjfljghieliggacelkamhfiiejncmjmi |
| 官方網址 | 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:\/\/*\/*\/"
]
} | |