WikiCopy

A lightweight tool for copying text from sites like Wikipedia without the bracketed notes.

WikiCopyคืออะไร?

WikiCopy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sandhoefner.github.io และคุณลักษณะหลักของมันคือ "A lightweight tool for copying text from sites like Wikipedia without the bracketed notes."

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

screenshot

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

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

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

                        Whenever you copy text from Wikipedia and paste it somewhere else, you end up with something like this:

Multiple researchers[94][95][96][97][98] all reported instances of coyotes killing bobcats, whereas bobcats killing coyotes is more rare.[93]

These references are an important way to ensure credibility in Wikipedia articles, but maybe you just want to make a note to self, or to share a fun fact with a friend. If you're not worried about citing your sources, the references may be unnecessary clutter - especially in plain text, where they're bigger and can't act as hyperlinks. Maybe you'd rather have something like this:

Multiple researchers all reported instances of coyotes killing bobcats, whereas bobcats killing coyotes is more rare.

That's where this extension comes in. There are two ways to use it:
* Select text, right-click, and choose "Copy without notes".
* Select text and use the keyboard shortcut Ctrl+X.

That's it! You can still perform regular copying as you usually would. WikiCopy can be used on any site, but it's fine-tuned for Wikipedia.

If the keyboard shortcut doesn't work for you, it may be because Ctrl+X is already taken by something else. There's an easy fix:
1) Navigate to chrome://extensions in your address bar.
2) Scroll down if necessary, and click "Keyboard Shortcuts" in the bottom-right.
3) Choose any key combination you like!

If you have a moment, please rate, review, or contact me directly through the support tab. I look forward to hearing from you!                    

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

ชื่อ WikiCopy WikiCopy
ID bmcjdndjcgnknhpepkahmdfdlkkfifbl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wikicopy/bmcjdndjcgnknhpepkahmdfdlkkfifbl
คำอธิบาย A lightweight tool for copying text from sites like Wikipedia without the bracketed notes.
ขนาดไฟล์ 35.54 KB
จำนวนการติดตั้ง 135
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2016-07-26
วันที่เผยแพร่ 2016-07-26
คะแนน 4.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://sandhoefner.github.io
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WikiCopy",
    "short_name": "WikiCopy",
    "description": "A lightweight tool for copying text from sites like Wikipedia without the bracketed notes.",
    "version": "1.1.0",
    "permissions": [
        "contextMenus",
        ""
    ],
    "author": "Evan Sandhoefner",
    "background": {
        "scripts": [
            "script.js",
            "jquery-2.1.1.min.js"
        ]
    },
    "icons": {
        "16": "star-16.png",
        "48": "star-48.png",
        "128": "star-128.png"
    },
    "commands": {
        "copy": {
            "suggested_key": {
                "default": "Ctrl+X"
            },
            "description": "Copy",
            "global": false
        }
    },
    "manifest_version": 2
}