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
官方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"
            ]
        }
    ]
}