SaveMyClips

SaveMyClips keeps track of things that you copy in your clipboard so you don't lose them.

SaveMyClipsคืออะไร?

SaveMyClips เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sagnew92 และคุณลักษณะหลักของมันคือ "SaveMyClips keeps track of things that you copy in your clipboard so you don't lose them."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SaveMyClips

ดาวน์โหลดไฟล์ส่วนขยาย SaveMyClips ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        SaveMyClips keeps a history of your current Chrome session's clipboard activity. If you accidentally copy over something that you wanted to keep track of, you can revert to your previous clipboard content. 

How to use:

The keyboard shortcuts to navigate your clipboard are Alt+O to go backwards, and Alt+P to go forwards. The clipboard content is stored in chronological order of when it was copied.

In order to view every piece of clipboard content from the current Chrome session, click on the browser action icon. This will display text boxes containing everything that was copied in this session, allowing you to reselect any text that you previously had in your clipboard.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SaveMyClips SaveMyClips
ID inbmbkfkikgfjcjhgkoofielljhoipfe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/savemyclips/inbmbkfkikgfjcjhgkoofielljhoipfe
คำอธิบาย SaveMyClips keeps track of things that you copy in your clipboard so you don't lose them.
ขนาดไฟล์ 15.01 KB
จำนวนการติดตั้ง 453
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2013-11-15
วันที่เผยแพร่ 2013-11-14
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา sagnew92
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SaveMyClips",
    "description": "SaveMyClips keeps track of things that you copy in your clipboard so you don't lose them.",
    "version": "1.0",
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "permissions": [
        "clipboardWrite",
        "clipboardRead",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/copylisten.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "imgs\/icon128.png",
        "default_popup": "display.html"
    },
    "background": {
        "scripts": [
            "scripts\/clipboard.js",
            "scripts\/background.js"
        ]
    },
    "commands": {
        "back": {
            "suggested_key": {
                "default": "Alt+O"
            },
            "description": "Allows the user to go to the previous clipboard item."
        },
        "forward": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Allows the user to go to the next clipboard item."
        }
    }
}