Clipboard History

Extension to save history of copied text in browser

什麼是Clipboard History?

Clipboard History是由Saif As開發的Chrome擴展程式,該擴展的主要功能是“Extension to save history of copied text in browser”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Clipboard History擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}