Spaced-Repetition in Notion - Repetify
The most effective, science-backed way to study, now in Notion.
什么是Spaced-Repetition in Notion - Repetify?
Spaced-Repetition in Notion - Repetify是由repetify.com开发的Chrome扩展程序,该扩展的主要功能是“The most effective, science-backed way to study, now in Notion.”。
扩展截图
下载Spaced-Repetition in Notion - Repetify扩展crx文件
下载Spaced-Repetition in Notion - Repetify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Repetify uses the same Spaced Repetition Algorithm as Anki so you only study information you're about to forget. ⭐️ Repetify highlights a block in your notes when it's time to study it again. 🚩 Repetify automatically color-codes your notes. 💻 Repetify supports both toggle and indented-text formatted notes The most effective, science-backed way to study, now in Notion. No more copy-pasting your notes into Anki. It's easy, effective studying from now on.
扩展基本信息
名称 | Spaced-Repetition in Notion - Repetify |
ID | gloldpghbjmemjddgapkonmeiggbgihb |
官方URL | https://chromewebstore.google.com/detail/spaced-repetition-in-noti/gloldpghbjmemjddgapkonmeiggbgihb |
简介 | The most effective, science-backed way to study, now in Notion. |
文件大小 | 23.43 KB |
安装次数 | 1,176 |
当前版本 | 0.0.7 |
更新时间 | 2022-12-11 |
上架时间 | 2022-03-20 |
评分 | 3.37/5 共19次评分 |
开发者 | repetify.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.repetify.com |
隐私政策页面URL | https://repetify.com/privacy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spaced-Repetition in Notion - Repetify", "description": "The most effective, science-backed way to study, now in Notion.", "version": "0.0.7", "manifest_version": 3, "permissions": [ "storage" ], "action": { "default_icon": { "16": "\/favicon-16x16.png", "32": "\/favicon-32x32.png" } }, "icons": { "16": "\/favicon-16x16.png", "32": "\/favicon-32x32.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "main.js" ], "css": [ "styles.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.repetify.com\/*" ], "js": [ "repetify-content.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "images\/cached.svg", "block_functions\/getSelectedBlockId.js", "block_functions\/isValidBlock.js", "helper_functions\/createContentObserver.js", "helper_functions\/keybindings.js", "helper_functions\/rateBlock.js", "helper_functions\/sendBlockPOSTRequest.js", "helper_functions\/setEndOfContenteditable.js", "helper_functions\/shortcuts.js", "helper_functions\/sleep.js", "SRS_functions\/getDueIn.js", "SRS_functions\/useAlgorithm.js", "scripts\/blocksContentScript.js", "scripts\/contentScript.js" ], "matches": [ "https:\/\/www.notion.so\/*" ] } ], "content_security_policy": { "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'" } } |