Paste Enforcer

It will type the contents of your Clipboard so you can paste text in websites that block it

Paste Enforcer là gì?

Paste Enforcer là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "It will type the contents of your Clipboard so you can paste text in websites that block it".

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

screenshot

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

Tải xuống các tệp mở rộng Paste Enforcer 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

                        It will type the contents of your Clipboard so you can paste text in websites that block it.

Just right click the field and select: "Force paste!"                    

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

Tên Paste Enforcer Paste Enforcer
ID klioagabdlbmbhomedhkfkjggelmfclg
URL Chính Thức https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg
Mô tả It will type the contents of your Clipboard so you can paste text in websites that block it
Kích Thước Tệp 64.39 KB
Số Lần Cài Đặt 1,677
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-12-12
Ngày Phát Hành 2018-12-06
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Paste Enforcer",
    "version": "1.1",
    "description": "It will type the contents of your Clipboard so you can paste text in websites that block it",
    "permissions": [
        "contextMenus",
        "activeTab",
        "clipboardRead"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vendor\/jquery.js",
                "vendor\/bililiteRange.js",
                "vendor\/jquery.sendkeys.js",
                "content-script.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}