Paste Enforcer
It will type the contents of your Clipboard so you can paste text in websites that block it
Apa itu Paste Enforcer?
Paste Enforcer adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "It will type the contents of your Clipboard so you can paste text in websites that block it".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Paste Enforcer
Unduh file ekstensi Paste Enforcer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!"
Informasi Dasar Ekstensi
Nama | Paste Enforcer |
ID | klioagabdlbmbhomedhkfkjggelmfclg |
URL Resmi | https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg |
Deskripsi | It will type the contents of your Clipboard so you can paste text in websites that block it |
Ukuran File | 64.39 KB |
Jumlah Instalasi | 1,677 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2018-12-12 |
Tanggal Publikasi | 2018-12-06 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |