RTM Assistant

RTM Assistant helps to add quickly the web-page link in RememberTheMilk.

RTM Assistantคืออะไร?

RTM Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chivorotkiv และคุณลักษณะหลักของมันคือ "RTM Assistant helps to add quickly the web-page link in RememberTheMilk."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RTM Assistant

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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:\/\/*\/*"
    ]
}