Readily

A web highlighter and annotation tool for all kinds of visual thinkers.

Readily란 무엇입니까?

Readily은(는) https://getreadily.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A web highlighter and annotation tool for all kinds of visual thinkers."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Whether you are a student, a teacher, a programmer, a designer, or someone who enjoys reading online. Readily is a perfect tool to capture your mind visually.

Try it now! No sign-up is required.

Warning: since the data is stored locally in your browser, please back up all the necessary information before deleting the extension.

All feedback and suggestions are welcome! Please contact:
Email: [email protected]
Twitter: https://twitter.com/chunrapeepat

🌈 Key Features

+ Unlimited highlight colors
+ Unlimited highlights
+ Sidebar infinite Excalidraw canvas
+ Drag-and-drop highlight to canvas
+ Excalidraw library support
+ Data is stored locally in the browser (Import/Export Data)
+ YouTube support.
+ Disable/Enable extension on specific domain
+ No sign-up required. Just install it, and you're ready to go
+ Export to Obsidian Plugin
+ Create a shared canvas between multiple pages with real-time sync

🌈 Upcoming Features

+ Notion/Obsidian integration
+ Encrypted Sync 
+ Full-text Search

🌈 Our Design Principles

1. Free: our core features will be free and always will be, including unlimited highlights, colors, notes, and infinite canvas.

2. Deadly-simple: our product must do one thing and do it well - capturing and recalling information.

3. Grow alongside the user's workflow: the more you use Readily, the more powerful the tool is. This will be in the form of shortcuts, templates, drawing libraries, and plugins.

4. Private: all the data is stored locally in your browser, everything is private, and it's 100% owned by you.

5. Blazing fast: the tool's speed directly affects how we think and work. So we designed Readily to be as fast as your mind can go. (as-you-type search, soon)

6. Globally Accessible: your data should be accessible across browsers and devices. (encrypted sync, soon)

🌈 Change Log

1.3.0
- Fix Export to Obsidian bug (parse content on Excalidraw elements error)
- Implement a shared canvas feature with real-time sync

1.2.0
- Add Obsidian Export Plugin: export web content, highlights and whiteboard data to Obsidian, edit export markdown template.

1.1.1
- Fix bug: YouTube screenshot button does not appear on the video player if the URL change and the prev page is not the watch page.
- Fix bug: clicking on the link on YouTube on a whiteboard causes the whiteboard to refresh.

1.1.0
- Fix bug on drag and drop files from computer and screenshot software.
- Implement disable extension and domain function.
- Implement import/export data function.
- Implement YouTube support (take video screenshots and drop them on the whiteboard)
- Handle highlight and whiteboard data when the URL change without the page refresh.

1.0.1
- Improve: Check Excalidraw elements instead of ID for Excalidraw default opening
- Improve: change the sidebar toggle design (confused currently)
- Fix bug: image did not load if loaded from the computer
- Disable Plausible tracking on a dev environment

1.0.0
- MVP Version
- https://twitter.com/chunrapeepat/status/1600158257770729474

————

Craft with ❤️ by @chunrapeepat (https://twitter.com/chunrapeepat)
DMs are open!                    

확장 프로그램 기본 정보

이름 Readily Readily
ID igjnaglbgbjjpgmokokpiepakkalegmp
공식 URL https://chromewebstore.google.com/detail/readily/igjnaglbgbjjpgmokokpiepakkalegmp
설명 A web highlighter and annotation tool for all kinds of visual thinkers.
파일 크기 3.13 MB
설치 횟수 873
현재 버전 1.3.0
최근 업데이트 2023-04-22
출시 날짜 2022-12-24
평점 4.90/5 총 10 개의 평점
개발자 https://getreadily.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://getreadily.com/
도움말 페이지 URL https://twitter.com/chunrapeepat
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/acff9b8d-a246-45d5-a964-0509cf1698aa
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Readily",
    "description": "A web highlighter and annotation tool for all kinds of visual thinkers.",
    "version": "1.3.0",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon16.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "service_worker": "js\/service-worker\/index.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "node_modules\/@webcomponents\/custom-elements\/custom-elements.min.js",
                "js\/highlighter\/index.js",
                "js\/sidebar-whiteboard\/index.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "excalidraw-assets\/*",
                "excalidraw-assets-dev\/*",
                "plausible.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ]
}