Copy & Paste

The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…

Copy & Pasteคืออะไร?

Copy & Paste เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gal.bogdan2015 และคุณลักษณะหลักของมันคือ "The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…"

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

screenshot

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

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

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

                        The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have quick access to them.

Save the data you need with one click by simply copying it.

Just use Ctrl+c.                    

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

ชื่อ Copy & Paste Copy & Paste
ID oijiikmgkljldpbpddpmhiblpgkciobn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn
คำอธิบาย The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…
ขนาดไฟล์ 81.47 KB
จำนวนการติดตั้ง 889
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-06-29
วันที่เผยแพร่ 2020-06-28
ผู้พัฒนา gal.bogdan2015
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy & Paste",
    "version": "1.0",
    "icons": {
        "32": "img\/logo32.png",
        "48": "img\/logo48.png"
    },
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "*:\/\/fonts.googleapis.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/libs\/jquery-3.2.1.min.js",
            "js\/libs\/safeResponse.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/oncopy.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Copy & Paste",
        "default_icon": "img\/logo64.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}