Smart Clipboard

'Store and Search' - Stores multiple content copied from web and then allows to preview, copy or run a search on those saved texts

Smart Clipboardคืออะไร?

Smart Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ajoshi และคุณลักษณะหลักของมันคือ "'Store and Search' - Stores multiple content copied from web and then allows to preview, copy or run a search on those saved texts"

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Most of us have probably run into and been frustrated by the shortcomings of a normal clipboard. For example,
Not being able to store more than one copied content at a time
Not being able to retrieve previously copied content
Not having the ability to preview copied content

Suppose you are writing an email and are copying and pasting a number of content from different websites. You copied some content from website A but forgot to paste it in your email. You closed out the website and then opened website B. Only after you copied some text from this new page, you realize that you hadn't pasted that previous content from website A. Now what would you do? 
1. Find website A 
 - look through your browser history?
 - google again?
2. Open website A
 - wait for the website to load
3. Scroll to find that specific content
4. Copy the text again
5. Paste it in your email

Smart Clipboard saves you all these pains. All you need to do is:
1. Open Smart Clipboard to easily preview all the content that you have copied
2. Select that previous content you copied from website A
3. Paste it in your email

Smart Clipboard is a 'store and search' extension tool that stores multiple contents you copied from web and then allows you to preview, copy or  run a search on those saved texts.

Works with any http:// or https:// sites except Chrome extension gallery pages.

Features:
1. User friendly notification whenever a content is copied from website
2. Preview all copied contents (clips)
3. Pagination control if you are storing more clips 
4. Delete clips you no longer need
5. Filter and search on clips
6. Clean Format - Copy without formatting                    

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

ชื่อ Smart Clipboard Smart Clipboard
ID bhpmmnjmgiokghailccccelnmhcgoakb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/smart-clipboard/bhpmmnjmgiokghailccccelnmhcgoakb
คำอธิบาย 'Store and Search' - Stores multiple content copied from web and then allows to preview, copy or run a search on those saved texts
ขนาดไฟล์ 74.3 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2015-07-20
วันที่เผยแพร่ 2015-07-20
คะแนน 3.65/5 รวมทั้งหมด 62 คะแนน
ผู้พัฒนา ajoshi
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "smartclipboard.html",
        "default_title": "Store and Search contents copied from web"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "smartclipboard.js",
                "clip_hu_mini.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "'Store and Search' -  Stores multiple content copied from web and then allows to preview, copy or run a search on those saved texts",
    "icons": {
        "128": "icon_128.png"
    },
    "name": "Smart Clipboard",
    "permissions": [
        "tabs"
    ],
    "version": "1.3"
}