ClipSave

An extension to make sure you never lose your clipboard history

ما هو ClipSave؟

ClipSave هو إضافة Chrome تم تطويرها بواسطة Delaney Garcia، والميزة الرئيسية لها هي "An extension to make sure you never lose your clipboard history".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ClipSave

قم بتنزيل ملفات الامتداد ClipSave بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Have you ever copied (ctrl+c) some important text that you wrote on your clipboard and then accidentally replaced it with something else? Have you ever pressed 'paste' (ctrl+v) and been disappointed that you lost something you typed or were trying to save?

This happened to me so many times that I decided to write an extension: ClipSave to the rescue!

ClipSave is simple extension, but it does exactly what it's supposed to do... it saves your clipboard locally on your computer so when you click the icon you can see a history of all the things you copied. You can also delete individual items or clear the whole bin! 

There are other extensions that do this, but they were all too complicated to use and set up, required account creation, and have all these bells and whistles I didn't need, so I made something that simply solves the problem. 

I hope you enjoy this as much as I do and it boost your productivity and saves you from losing your clipboard!

When you install this extension, it will ask you for permission to  access your clipboard.

(this product is not associated with Microsoft in any way, i just thought that clippy would make a great mascot!)                    

معلومات أساسية عن التمديد

الاسم ClipSave ClipSave
ID hjfefailkkdemcabngpbggekdflibnml
عنوان URL الرسمي https://chromewebstore.google.com/detail/clipsave/hjfefailkkdemcabngpbggekdflibnml
الوصف An extension to make sure you never lose your clipboard history
حجم الملف 8.7 MB
عدد التثبيتات 23
النسخة الحالية 1
آخر تحديث 2019-07-10
تاريخ النشر 2019-07-05
المطور Delaney Garcia
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ClipSave",
    "version": "1",
    "manifest_version": 2,
    "description": "An extension to make sure you never lose your clipboard history",
    "homepage_url": "https:\/\/clippy.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "\/src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Your Saved Clipboard",
        "default_popup": "src\/bg\/background.html"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}