Paste Enforcer
It will type the contents of your Clipboard so you can paste text in websites that block it
Paste Enforcerคืออะไร?
Paste Enforcer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "It will type the contents of your Clipboard so you can paste text in websites that block it"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Paste Enforcer
ดาวน์โหลดไฟล์ส่วนขยาย Paste Enforcer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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!"
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Paste Enforcer |
ID | klioagabdlbmbhomedhkfkjggelmfclg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg |
คำอธิบาย | It will type the contents of your Clipboard so you can paste text in websites that block it |
ขนาดไฟล์ | 64.39 KB |
จำนวนการติดตั้ง | 1,677 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2018-12-12 |
วันที่เผยแพร่ | 2018-12-06 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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 } |