Clippy - Screen Recorder & Productivity Tool

Record your screen with one click and share the link. The ultimate all-in-one productivity tool.

Что такое Clippy - Screen Recorder & Productivity Tool?

Clippy - Screen Recorder & Productivity Tool - это расширение Chrome, разработанное Clippy.video, и его основная функция - "Record your screen with one click and share the link. The ultimate all-in-one productivity tool.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Clippy - Screen Recorder & Productivity Tool

Скачайте файлы расширений Clippy - Screen Recorder & Productivity Tool в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Introducing Clippy, your all-in-one screen recording companion, designed to simplify content creation and sharing.  Say goodbye to time-consuming descriptions in chats; share a screen recording instead. 🥳 Clippy is your go-to tool for effortlessly recording your screen, sharing recordings, and enhancing productivity, all within the convenience of a browser extension.

KEY FEATURES

 📽️ Record your screen, webcam, and microphone with 1 click.
 💾 Automatically save your videos to the cloud storage and share them instantly with a link.
 📚 Manage your video library from anywhere you want.


📽️ Record Screen and Share with Ease 📽️
Clippy empowers you with an intuitive and feature-packed screen recording utility, perfect for creating compelling content. Record from your screen or webcam, then save or share your recordings seamlessly.

With Clippy, you can:
Record a specific tab on Chrome.
Record a Google Chrome window.
Record your desktop screen.
Record your webcam.

🪄 Streamlined Sharing and Collaboration: 🪄

Instantly share your recordings via generated links. Collaborate effortlessly with colleagues and friends, using visuals to explain materials and information.

📚 Intuitive Video Library 📚

Clippy comes with an intuitive dashboard that stores all your recordings in one place. You can access them from anywhere and check your recorded videos, get shareable links, and delete them as required.

Clippy is designed for ease of use and efficiency. Its user-friendly interface offers a quick, one-click solution for all your screen capture and recording needs. Say goodbye to time-consuming descriptions in chats; share a screen recording instead.

Clippy is the ultimate browser extension that brings the power of content creation to a single click. Whether you're a professional in need of precise screen recording or just want to share moments with friends, Clippy is your trusted companion. Best of all, it's completely free to use on any website.

Experience the future of content creation with Clippy – the #1 choice for screen recording. Get it today and enhance your productivity, easily and with the highest quality.                    

Основная информация о расширении

Название Clippy - Screen Recorder & Productivity Tool Clippy - Screen Recorder & Productivity Tool
ID hkmfocnghbljmfapeakdfeajmakgjcjk
Официальный URL https://chromewebstore.google.com/detail/clippy-screen-recorder-pr/hkmfocnghbljmfapeakdfeajmakgjcjk
Описание Record your screen with one click and share the link. The ultimate all-in-one productivity tool.
Размер файла 429 KB
Количество установок 35
Текущая Версия 2.0.0
Последнее Обновление 2023-12-22
Дата публикации 2023-10-30
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Clippy.video
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.clippy.video/
URL страницы помощи https://www.clippy.video/
URL страницы политики конфиденциальности https://clippy.video/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Clippy - Screen Recorder & Productivity Tool",
    "description": "Record your screen with one click and share the link. The ultimate all-in-one productivity tool.",
    "version": "2.0.0",
    "icons": {
        "512": "icons\/512.png",
        "128": "icons\/128.png",
        "64": "icons\/64.png",
        "32": "icons\/32.png"
    },
    "action": {
        "default_title": "Clippy - Screen Recorder & Productivity Tool",
        "default_popup": "popup.html",
        "default_icon": {
            "512": "icons\/512.png",
            "128": "icons\/128.png",
            "64": "icons\/64.png",
            "32": "icons\/32.png"
        }
    },
    "permissions": [
        "desktopCapture",
        "tabs",
        "storage",
        "clipboardWrite"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "parserOnClippy.js"
            ],
            "matches": [
                "http:\/\/localhost:8878\/*",
                "https:\/\/app.clippy.video\/*",
                "https:\/\/staging-app.clippy.video\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "clipboard.js"
            ],
            "matches": [
                "http:\/\/localhost:8878\/share\/video\/*",
                "https:\/\/app.clippy.video\/share\/video\/*",
                "https:\/\/staging-app.clippy.video\/share\/video\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}