Clipboard History

Extension to save history of copied text in browser

Clipboard Historyคืออะไร?

Clipboard History เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Saif As และคุณลักษณะหลักของมันคือ "Extension to save history of copied text in browser"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        it saves each item copied on the clipboard allowing access to any of those items at any time later.

Features:

● Hovering on one item will show all the text content in the tooltip

● Clicking on one item will copy the text to clipboard

● Searching for text will search all the items for matching text

● Clicking on the X button near each item will delete the item from the list

● Clicking on clear saved text will clear all the saved text



Isn't working as expected?
Please send me mail to: [email protected]                    

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

ชื่อ Clipboard History Clipboard History
ID mhokbaagmjlbflncohdhinppihlojpco
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clipboard-history/mhokbaagmjlbflncohdhinppihlojpco
คำอธิบาย Extension to save history of copied text in browser
ขนาดไฟล์ 177 KB
จำนวนการติดตั้ง 1,677
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2021-11-01
วันที่เผยแพร่ 2020-07-15
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Saif As
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Clipboard History",
    "version": "1.5",
    "description": "Extension to save history of copied text in browser",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png",
        "512": "icons\/icon512.png"
    },
    "action": {
        "default_icon": "icons\/icon512.png",
        "default_popup": "src\/browser_actions\/popup.html",
        "default_title": "Clipboard History"
    },
    "background": {
        "service_worker": "src\/bg\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/browser_actions\/content.js"
            ]
        }
    ]
}