Clippy - Screen Recorder & Productivity Tool

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

Vad är Clippy - Screen Recorder & Productivity Tool?

Clippy - Screen Recorder & Productivity Tool är en Chrome-tillägg utvecklad av Clippy.video, och dess huvudfunktion är "Record your screen with one click and share the link. The ultimate all-in-one productivity tool.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Clippy - Screen Recorder & Productivity Tool-förlängningens CRX-fil

Ladda ner Clippy - Screen Recorder & Productivity Tool-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Clippy - Screen Recorder & Productivity Tool Clippy - Screen Recorder & Productivity Tool
ID hkmfocnghbljmfapeakdfeajmakgjcjk
Officiell webbadress https://chromewebstore.google.com/detail/clippy-screen-recorder-pr/hkmfocnghbljmfapeakdfeajmakgjcjk
Beskrivning Record your screen with one click and share the link. The ultimate all-in-one productivity tool.
Filstorlek 429 KB
Antal Installationer 35
Aktuell Version 2.0.0
Senast Uppdaterad 2023-12-22
Publiceringsdatum 2023-10-30
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Clippy.video
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.clippy.video/
Hjälpsida URL https://www.clippy.video/
URL till Sekretesspolicy Sidan https://clippy.video/privacy-policy
Stödda Språk 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'"
    }
}