Permanent clipboard

Allows you to store and access multiple elements in clipboard

Permanent clipboard là gì?

Permanent clipboard là một tiện ích mở rộng Chrome được phát triển bởi https://bartosz.im/permanent-clipboard, và tính năng chính của nó là "Allows you to store and access multiple elements in clipboard".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Permanent clipboard

Tải xuống các tệp mở rộng Permanent clipboard dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Permanent clipboard Permanent clipboard
ID hilkjcfodmbdgpadbpehimibheopoccb
URL Chính Thức https://chromewebstore.google.com/detail/permanent-clipboard/hilkjcfodmbdgpadbpehimibheopoccb
Mô tả Allows you to store and access multiple elements in clipboard
Kích Thước Tệp 1.23 MB
Số Lần Cài Đặt 63,730
Phiên Bản Hiện Tại 2.5.5
Cập Nhật Lần Cuối 2021-10-19
Ngày Phát Hành 2020-05-12
Đánh Giá 4.30/5 Tổng số 209 Đánh Giá
Nhà Phát Triển https://bartosz.im/permanent-clipboard
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/przybylski/permanent-clipboard/issues
URL Trang Chính Sách Bảo Mật https://permanent-clipboard.app/privacy
Ngôn Ngữ Được Hỗ Trợ 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'"
}