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."입니다.

확장 프로그램 스크린샷

screenshot

RTM Assistant 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 RTM Assistant RTM Assistant
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:\/\/*\/*"
    ]
}