Chrome Clipper V2

Chrome Clipper creates Clippings that allow you to save regularly used text, which can be inserted into forms at a later date

Chrome Clipper V2คืออะไร?

Chrome Clipper V2 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rockinfreakshow และคุณลักษณะหลักของมันคือ "Chrome Clipper creates Clippings that allow you to save regularly used text, which can be inserted into forms at a later date"

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

screenshot
screenshot

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

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

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

                        It is a Chrome version of Clippings for Firefox

UPDATE - v0.2 (June242018) : The previous known issue of not able to paste in rich text boxes is fixed in the latest code. It should work on "MOST IF NOT ALL" rich text box style websites. Tested in gmail, AOL, Twitter, Tumblr successfully:)

Key features include:
- Insert clipping text quickly and easily from the context menu
- Save new clippings from selected text from the context menu
- Create new custom clippings by highlighting text in the page and clicking the icon on the toolbar
- Create entirely self-authored clippings from the 'add clippings' interface you can see by clicking the toolbar icon
- Edit saved clippings
- Create and rename folders
- Move clippings into, between and out of folders
- Insert clippings with keyboard shortcuts
- Include placeholders in clippings
- Import clippings from Firefox extension
- Share clippings with other Chrome users

** Importing from Firefox **
- Make sure your Clippings extension for Firefox is up to date
- Export the 'Clippings file' from the Clippings extension for Firefox (the default export option for the up to date extension)
- Open the .rdf file which you have exported in Notepad/TextEdit/a text editor of your choice
- Copy and paste the entire file into the 'Import from Firefox' box in the Chrome Clipper extension

Chrome is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

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

ชื่อ Chrome Clipper V2 Chrome Clipper V2
ID hfkoggbhhafhlljngjplifkiealkfhgl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-clipper-v2/hfkoggbhhafhlljngjplifkiealkfhgl
คำอธิบาย Chrome Clipper creates Clippings that allow you to save regularly used text, which can be inserted into forms at a later date
ขนาดไฟล์ 372 KB
จำนวนการติดตั้ง 100
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2018-06-24
วันที่เผยแพร่ 2018-06-23
คะแนน 4.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา rockinfreakshow
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Clipper V2",
    "version": "0.2",
    "manifest_version": 2,
    "description": "Chrome Clipper creates Clippings that allow you to save regularly used text, which can be inserted into forms at a later date",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Chrome Clipper",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js",
                "shortcuts.js",
                "selection.js"
            ],
            "all_frames": false
        }
    ],
    "background": {
        "page": "background.html"
    },
    "options_page": "saved.html"
}