Clipou: Clipboard History Manager

Manage all your Clipps in one app

什麼是Clipou: Clipboard History Manager?

Clipou: Clipboard History Manager是由Extensions And Co開發的Chrome擴展程式,該擴展的主要功能是“Manage all your Clipps in one app”。

擴展截圖

screenshot

下載Clipou: Clipboard History Manager擴展crx文件

下載Clipou: Clipboard History Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Quickly manage and list copied text.

Clipou will store the text you've copied across the web and allow you to manage it easily.  

Features :

- Manage your ClipBoard history.
- Add Clips by Ctrl + C or Click and Copy
- Add your Clips as favorits.
- Delete your Clips.

Notes :
- Clipou will ignore copied text from password fields.
- You Must reopen Chrome after installation.                    

擴展基本資訊

名稱 Clipou: Clipboard History Manager Clipou: Clipboard History Manager
ID npfghbanedhpdmbnnbiacklepppgfbid
官方網址 https://chromewebstore.google.com/detail/clipou-clipboard-history/npfghbanedhpdmbnnbiacklepppgfbid
簡介 Manage all your Clipps in one app
檔案大小 104 KB
安裝次數 31
目前版本 1.0.0
更新時間 2022-10-24
上架時間 2022-10-23
評分 5.00/5 共 1 次評分
開發者 Extensions And Co
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_description__",
    "version": "1.0.0",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "action": {
        "default_title": "__MSG_ext_name__",
        "default_popup": "html\/popup.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            }
        }
    }
}