Scroll Bookmarker

Save your place on a web page to view again later

Scroll Bookmarkerคืออะไร?

Scroll Bookmarker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Owen และคุณลักษณะหลักของมันคือ "Save your place on a web page to view again later"

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

screenshot

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

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

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

                        This chrome extension allows you to save your scroll position on any given website and access that position again at a later date. You may have multiple scroll positions saved on any one web page at a time. The extension allows you to create these scroll markers, cycle through them, and delete them.                    

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

ชื่อ Scroll Bookmarker Scroll Bookmarker
ID plnmmjpilknfapheonmhlapbfkkcaeko
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scroll-bookmarker/plnmmjpilknfapheonmhlapbfkkcaeko
คำอธิบาย Save your place on a web page to view again later
ขนาดไฟล์ 1.18 MB
จำนวนการติดตั้ง 487
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2018-04-08
วันที่เผยแพร่ 2018-04-08
คะแนน 3.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Owen
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scroll Bookmarker",
    "description": "Save your place on a web page to view again later",
    "version": "1.0.0",
    "offline_enabled": true,
    "browser_action": {
        "default_popup": ".\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                ".\/js\/content.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}