Permanent clipboard

Allows you to store and access multiple elements in clipboard

什麼是Permanent clipboard?

Permanent clipboard是由https://bartosz.im/permanent-clipboard開發的Chrome擴展程式,該擴展的主要功能是“Allows you to store and access multiple elements in clipboard”。

擴展截圖

screenshot
screenshot
screenshot

下載Permanent clipboard擴展crx文件

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

擴展使用說明

                        How many times you wanted to keep important, but hard to remember, information at your mouse click without leaving the browser?
Now you can achieve it with Permanent clipboard.
This extensions allows you to save browser clipboard element with friendly name at your fingertips. Now you can store things like phone number, answer templates for discussion forums or bank account numbers.                    

擴展基本資訊

名稱 Permanent clipboard Permanent clipboard
ID hilkjcfodmbdgpadbpehimibheopoccb
官方網址 https://chromewebstore.google.com/detail/permanent-clipboard/hilkjcfodmbdgpadbpehimibheopoccb
簡介 Allows you to store and access multiple elements in clipboard
檔案大小 1.23 MB
安裝次數 63,730
目前版本 2.5.5
更新時間 2021-10-19
上架時間 2020-05-12
評分 4.30/5 共 209 次評分
開發者 https://bartosz.im/permanent-clipboard
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/przybylski/permanent-clipboard/issues
隱私政策頁面URL https://permanent-clipboard.app/privacy
支援的語言 de,en,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "constants.js",
            "analytics.js",
            "storage.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "38": "img\/icon-38.png",
            "19": "img\/icon-19.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "constants.js",
                "contentscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "128": "img\/icon-128.png",
        "16": "img\/icon-16.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "options_page": "options.html",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "version": "2.5.5",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}