RTM Assistant
RTM Assistant helps to add quickly the web-page link in RememberTheMilk.
什么是RTM Assistant?
RTM Assistant是由chivorotkiv开发的Chrome扩展程序,该扩展的主要功能是“RTM Assistant helps to add quickly the web-page link in RememberTheMilk.”。
扩展截图
下载RTM Assistant扩展crx文件
下载RTM Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension helps to add quickly the web-page with URL in RememberTheMilk as a task. --- What's new in 0.4: The app uses last size and position of "Add Task" pop-up to open the pop-up next time. ---- Support me on Patreon: https://www.patreon.com/chivorotkiv/posts More info about the extension: You may know the "Quick Add"-bookmarklet [ https://www.rememberthemilk.com/help/?ctx=quickadd.whatis ], that allows quickly add tasks to RTM. Unfortunately it doesn't include URL of based webpage. This extension solves this problem. It based on simple bookmarklet described in the tip: [ http://www.rememberthemilk.com/forums/tips/3133/ ]. Extension works similarly to that bookmarklet, but it doesn't need additional bookmark panel or over clicks for using. It's displayed near the address bar that's why it's much more convenient. This product uses the Remember The Milk page but is not endorsed or certified by Remember The Milk. It doesn't use Remember The Milk API.
扩展基本信息
名称 | |
ID | afdjflpkbkggfpmgimnimllohgnhjccb |
官方URL | https://chrome.google.com/webstore/detail/rtm-assistant/afdjflpkbkggfpmgimnimllohgnhjccb |
简介 | RTM Assistant helps to add quickly the web-page link in RememberTheMilk. |
文件大小 | 26.6 KB |
安装次数 | 502 |
当前版本 | 0.4 |
更新时间 | 2021-02-16 |
上架时间 | 2013-11-14 |
评分 | 4.08/5 共13次评分 |
开发者 | chivorotkiv |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.patreon.com/chivorotkiv/posts |
帮助页面URL | https://github.com/evoja/rtm_assistant/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RTM Assistant", "version": "0.4", "description": "RTM Assistant helps to add quickly the web-page link in RememberTheMilk.", "icons": { "128": "i.png" }, "browser_action": { "default_icon": "i19_.png", "default_title": "Add to RTM" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/m.rememberthemilk.com\/add?name=*" ], "js": [ "popup-control.js" ] } ], "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ] } |