Don't F*** With Paste

Prevents the blocking of copying from & pasting into input fields

Don't F*** With Pasteคืออะไร?

Don't F*** With Paste เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jacob Swanner และคุณลักษณะหลักของมันคือ "Prevents the blocking of copying from & pasting into input fields"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Don't F*** With Paste

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

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

                        Extension that prevents the blocking of "copy", "cut" & "paste" browser events.

This extension does not try to prevent a site from also interfering with keyboard shortcuts related to those browser actions (control-v, command-v, etc.), nor does this extension prevent sites from interfering with the "contextmenu" event (right click menu). For those super annoying sites that interfere with keyboard shortcuts and context menu, using Edit -> Paste from the browser's menu might be required.

Version 2 is a major update to the extension. It makes it much easier to ensure the extension is only running on sites that are bad actors with copy & paste events and it also provides visibility into the active/inactive state of the extension for each tab.

In order to provide the smoothest experience as possible, the extension needs to know when you change active tabs. In order for the extension to know about that event, it needs the "tabs" permission, which Chrome describes as "can read and change all your data on websites you visit." That description is very scary, and is certainly not what this extension is doing. Being an open-sourced project, you can always read all the code to see how this extension works, and what it's [not] doing with your data.                    

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

ชื่อ Don't F*** With Paste Don't F*** With Paste
ID nkgllhigpcljnhoakjkgaieabnkmgdkb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dont-f-with-paste/nkgllhigpcljnhoakjkgaieabnkmgdkb
คำอธิบาย Prevents the blocking of copying from & pasting into input fields
ขนาดไฟล์ 83.71 KB
จำนวนการติดตั้ง 160,791
เวอร์ชันปัจจุบัน 2.9
อัปเดตครั้งล่าสุด 2022-05-21
วันที่เผยแพร่ 2020-02-04
คะแนน 4.33/5 รวมทั้งหมด 621 คะแนน
ผู้พัฒนา Jacob Swanner
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jswanner/DontF-WithPaste
URL หน้าช่วยเหลือ https://github.com/jswanner/DontF-WithPaste/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "dfwp.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "clipboard-inactive-32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "dfwp.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Prevents the blocking of copying from & pasting into input fields",
    "homepage_url": "https:\/\/github.com\/jswanner\/DontF-WithPaste",
    "icons": {
        "48": "clipboard-inactive-48.png",
        "128": "clipboard-inactive-128.png"
    },
    "manifest_version": 2,
    "name": "Don't F*** With Paste",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "version": "2.9"
}