Copy Clipper

Trim urls copied to the clipboard to make them shorter.

Copy Clipperคืออะไร?

Copy Clipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ark และคุณลักษณะหลักของมันคือ "Trim urls copied to the clipboard to make them shorter."

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

screenshot
screenshot
screenshot

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

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

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

                        Copy Clipper monitors the clipboard, and if it sees something that can be simplified it does. It's mostly used for urls.

It makes youtube urls short, amazon urls short, strips off the GA tracking parameters that reader/feedburner puts on urls and is driven by regexp search/replace.

https://www.youtube.com/watch?v=OQwD0QCbxaA&feature=my_favorites
becomes https://youtu.be/OQwD0QCbxaA

http://www.amazon.com/Simons-Cat-Simon-Tofield/dp/0446560065/ref=sr_1_1?ie=UTF8&qid=1346302386&sr=8-1&keywords=simons+cat
becomes http://www.amazon.com/Simons-Cat-Simon-Tofield/dp/0446560065

If it ever clips something you don't want clipped, you can click Undo in the notification window and it will restore the original value.

It didn't have to be a chrome extension, but I like the easy UI for an options panel, and the auto updating from the chrome store is neat.

It's a bit like this extension: https://chrome.google.com/webstore/detail/kcpnkledgcbobhkgimpbmejgockkplob
but the urls don't have to hit the url bar/omnibox before they are trimmed.

Changelog:

v 2.4.2
-------

You can append a pattern with the 'u' option which will URL decode the resulting value. Useful for pulling a URL out of a URL parameter.

v 2.4.0
-------

* You can now send the clipboard contents to another browser logged into your profile which is also running copyclipper. Just click on the copyclipper icon.
* Updated default rules
v 2.1.0
------

* support for new Chrome Notifications
* regexes are synced across browsers using chrome.storage.sync                    

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

ชื่อ Copy Clipper Copy Clipper
ID jhjclcccgiomgiccmjnphejamkdojccf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-clipper/jhjclcccgiomgiccmjnphejamkdojccf
คำอธิบาย Trim urls copied to the clipboard to make them shorter.
ขนาดไฟล์ 47.92 KB
จำนวนการติดตั้ง 168
เวอร์ชันปัจจุบัน 2.4.2
อัปเดตครั้งล่าสุด 2020-07-13
วันที่เผยแพร่ 2016-12-18
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา ark
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://blog.wtwf.com/2016/08/data-policy
ภาษาที่รองรับ en
manifest.json
{
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "128": "icon128.png",
            "16": "icon16.png",
            "48": "icon48.png"
        },
        "default_popup": "popup.html",
        "default_title": "Send To:"
    },
    "description": "Trim urls copied to the clipboard to make them shorter.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 2,
    "name": "Copy Clipper",
    "options_page": "options.html",
    "permissions": [
        "background",
        "clipboardRead",
        "clipboardWrite",
        "notifications",
        "sessions",
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.4.2"
}

ส่วนขยายที่เกี่ยวข้อง