Quotemark

Save quotes from all over the web!

Quotemarkคืออะไร?

Quotemark เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Save quotes from all over the web!"

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

screenshot
screenshot

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

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

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

                        Quotemark lets you save quotes from the internet and bookmark them. A list of quotes is saved in the extension's popup. Clicking on the quote, brings you back to the original web-page, where the quote is highlighted and in focus.                    

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

ชื่อ Quotemark Quotemark
ID klgfbfafpkfkchoeemoeicggojkdgecl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quotemark/klgfbfafpkfkchoeemoeicggojkdgecl
คำอธิบาย Save quotes from all over the web!
ขนาดไฟล์ 20.62 KB
จำนวนการติดตั้ง 18
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-11-21
วันที่เผยแพร่ 2019-11-16
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quotemark",
    "version": "1.0",
    "description": "Save quotes from all over the web!",
    "permissions": [
        "tabs",
        "contextMenus",
        "",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js",
            "contextmenu.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": ".\/icons\/iconcontrast.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/icons\/iconcontrast.png",
        "48": ".\/icons\/iconcontrast.png",
        "128": ".\/icons\/iconcontrast.png"
    },
    "manifest_version": 2
}