ClipIt

This chrome extension clips the selected text on the webpage. These clips can be saved into a text file.

ClipItคืออะไร?

ClipIt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mayank Bhardwaj และคุณลักษณะหลักของมันคือ "This chrome extension clips the selected text on the webpage. These clips can be saved into a text file."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This is a simple note clipper extension app that helps you to save the import text you come across while reading a webpage.

After selecting the text you want clip the right click menu option shows a ClipIt option. This option clips the text and adds it over the clipboard popup which can be accessed from the top right of the browser.

This popup acts as a clipboard to see your recently clipped notes.
You can export the notes using "Export Notes" into a text file. You may want to clear all the notes over the clipboard whenever you want a fresh clipboard. This could be done through "Clear Notes" option.                    

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

ชื่อ ClipIt ClipIt
ID jgmemodiapblpagmpfdkpjinbhfkpife
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clipit/jgmemodiapblpagmpfdkpjinbhfkpife
คำอธิบาย This chrome extension clips the selected text on the webpage. These clips can be saved into a text file.
ขนาดไฟล์ 39.73 KB
จำนวนการติดตั้ง 1,618
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-06-20
วันที่เผยแพร่ 2018-06-20
คะแนน 4.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Mayank Bhardwaj
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ClipIt",
    "version": "1.0",
    "description": "This chrome extension clips the selected text on the webpage. These clips can be saved into a text file.",
    "icons": {
        "48": "icons\/clipit48.png",
        "128": "icons\/clipit128.png"
    },
    "browser_action": {
        "default_icon": "icons\/clipit128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "notifications",
        "contextMenus"
    ]
}