Simple Paste Extension

Allows you to copy and paste customizable phrases!

Simple Paste Extensionคืออะไร?

Simple Paste Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Simple Paste Extension และคุณลักษณะหลักของมันคือ "Allows you to copy and paste customizable phrases!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Paste Extension

ดาวน์โหลดไฟล์ส่วนขยาย Simple Paste Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The Simple Paste Chrome Extension allows you to paste anything through your keyboard! Once you open your popup and press a keybind, the phrase will automatically copy and close the popup! If you want, you can customize the defaults (shown in the photo above!) by following the directions below.

Update:
In version 2.2.0, you can now click on the phrase you want copied on the popup, in addition to using your keyboard.

How to use the extension:

1. Customize the phrases (what you want to copy) and the keybind (the button you press to automatically copy the phrase) at 
chrome-extension://jbfmdblhfaookljgkjlcnhfachcfegei/customize.html
2. Press save
3. Press Ctrl + M (this can be changed at chrome://extensions/shortcuts)
4. Press the keybind associated with the phrase you want to copy
5. Paste it wherever you want!

I hope you find this extension useful! Leave a review to help out if the extension was useful! If you have questions, suggestions, or problems go to the 'Support' tab.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Simple Paste Extension Simple Paste Extension
ID jbfmdblhfaookljgkjlcnhfachcfegei
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simple-paste-extension/jbfmdblhfaookljgkjlcnhfachcfegei
คำอธิบาย Allows you to copy and paste customizable phrases!
ขนาดไฟล์ 108 KB
จำนวนการติดตั้ง 742
เวอร์ชันปัจจุบัน 2.2.1
อัปเดตครั้งล่าสุด 2021-08-19
วันที่เผยแพร่ 2020-10-23
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Simple Paste Extension
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Paste Extension",
    "version": "2.2.1",
    "description": "Allows you to copy and paste customizable phrases!",
    "browser_action": {
        "default_icon": "SimplePaste128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "icons": {
        "16": "SimplePaste16.png",
        "32": "SimplePaste32.png",
        "48": "SimplePaste48.png",
        "128": "SimplePaste128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl + M",
                "mac": "Ctrl + M",
                "chromeos": "Ctrl + M",
                "linux": "Ctrl + M"
            }
        }
    }
}