Paperclips Copilot

Autogenerate flashcards from anything you read on the web (for Anki, Quizlet, and more)

Paperclips Copilot란 무엇입니까?

Paperclips Copilot은(는) https://paperclips.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Autogenerate flashcards from anything you read on the web (for Anki, Quizlet, and more)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        📚 Meet Paperclips Copilot, your indispensable study partner that fits right into your browser! This Chrome extension is built for students like you, turning online study sessions into a breeze by converting any piece of text you find into high-quality flashcards. 🚀

🎩✨ And here's the magic: come across a concept in your course notes or an interesting point on a web page? Just highlight it and click the handy tooltip that pops up. Presto! You've got yourself a flashcard. It's that straightforward. What's more, these flashcards stay organized 📂 and in sync across all tabs, ready for your review at any time. 🔄

🎁 But there's more to Paperclips Copilot. We know that many of you are big fans of platforms like Anki and Quizlet. So we've designed our tool to seamlessly export your flashcards to these and other study platforms. 

🌐 From course notes to blog posts, from research papers to news articles, Paperclips Copilot is here to revolutionize the way you study online. It's more than just remembering facts; it's about making every piece of information you encounter part of your learning journey. 🎯 Make your study more efficient, more engaging, and more enjoyable - one click at a time! 💡                    

확장 프로그램 기본 정보

이름 Paperclips Copilot Paperclips Copilot
ID nhbejfcfmpkkdebhddlibnhlegenafcf
공식 URL https://chromewebstore.google.com/detail/paperclips-copilot/nhbejfcfmpkkdebhddlibnhlegenafcf
설명 Autogenerate flashcards from anything you read on the web (for Anki, Quizlet, and more)
파일 크기 2.24 MB
설치 횟수 4,040
현재 버전 1.0.4
최근 업데이트 2023-10-11
출시 날짜 2023-06-06
평점 4.30/5 총 23 개의 평점
개발자 https://paperclips.app
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://www.paperclips.app
개인정보 보호 정책 페이지 URL https://www.paperclips.app/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Paperclips Copilot",
    "description": "Autogenerate flashcards from anything you read on the web (for Anki, Quizlet, and more)",
    "version": "1.0.4",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "cookies",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/clerk.paperclips.app\/*"
    ],
    "icons": {
        "16": "convertedpng.png",
        "48": "convertedpng.png",
        "128": "convertedpng.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_title": "Paperclips Copilot"
    },
    "background": {
        "service_worker": "backgroundScript.bundle.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "index.html"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}