Remind Me

Remind Me helps you remember articles by revisiting them following a spaced repetition learning algorithm

Remind Me란 무엇입니까?

Remind Me은(는) remindme.dreamstreet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remind Me helps you remember articles by revisiting them following a spaced repetition learning algorithm"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Remind Me 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Having a hard time remembering something from a webpage you've visited? This extension is for you.

Remind Me follows a conventional spaced repetition learning algorithm to help remind you to revisit a page you've been to in the past. Simply click "Remind Me!" while on the page of a website and the extension will resurface that site on a frequency optimized for memory retention. 

This is proof of concept extension designed to understand the value of spaced learning. I will iterate on it based on feedback provided by you. Feedback will initially need to be emailed to me as I'd like to keep the extension clean. In a future version I'll begin collecting real-time feedback on the quality of a reminder. 

If a feature doesn't exist that you think would be helpful - send a request my way! 

Please note, this is for Google account users only. If you're not logged into your account, it will not work.                    

확장 프로그램 기본 정보

이름 Remind Me Remind Me
ID iabpkngjacdcbpplbapmdphcopjaiofi
공식 URL https://chrome.google.com/webstore/detail/remind-me/iabpkngjacdcbpplbapmdphcopjaiofi
설명 Remind Me helps you remember articles by revisiting them following a spaced repetition learning algorithm
파일 크기 44.01 KB
설치 횟수 87
현재 버전 0.0.2
최근 업데이트 2018-07-14
출시 날짜 2018-07-14
평점 5.00/5 총 3 개의 평점
개발자 remindme.dreamstreet
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remind Me",
    "description": "Remind Me helps you remember articles by revisiting them following a spaced repetition learning algorithm",
    "version": "0.0.2",
    "icons": {
        "16": "RemindMe-16x16.png",
        "48": "RemindMe-48x48.png",
        "128": "RemindMe-128x128.png"
    },
    "browser_action": {
        "default_icon": "RemindMe-16x16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "request.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*.execute-api.us-west-1.amazonaws.com\/",
        "tabs",
        "identity",
        "identity.email"
    ]
}