Paperclips Copilot

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

Paperclips Copilot là gì?

Paperclips Copilot là một tiện ích mở rộng Chrome được phát triển bởi https://paperclips.app, và tính năng chính của nó là "Autogenerate flashcards from anything you read on the web (for Anki, Quizlet, and more)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Paperclips Copilot

Tải xuống các tệp mở rộng Paperclips Copilot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        📚 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! 💡                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Paperclips Copilot Paperclips Copilot
ID nhbejfcfmpkkdebhddlibnhlegenafcf
URL Chính Thức https://chromewebstore.google.com/detail/paperclips-copilot/nhbejfcfmpkkdebhddlibnhlegenafcf
Mô tả Autogenerate flashcards from anything you read on the web (for Anki, Quizlet, and more)
Kích Thước Tệp 2.24 MB
Số Lần Cài Đặt 4,040
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2023-10-11
Ngày Phát Hành 2023-06-06
Đánh Giá 4.30/5 Tổng số 23 Đánh Giá
Nhà Phát Triển https://paperclips.app
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://www.paperclips.app
URL Trang Chính Sách Bảo Mật https://www.paperclips.app/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}