Scrroll-Recall

An extension to save scroll position of a webpage

Scrroll-Recallคืออะไร?

Scrroll-Recall เป็นส่วนขยายของ Chrome ที่พัฒนาโดย D.Mahamood Sameer และคุณลักษณะหลักของมันคือ "An extension to save scroll position of a webpage"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        An extension to save scroll position of a webpage

You must have ran in to a situation that you are reading a long article or document but you don't have sufficient time to finish it , so you close the tab, and the next time when you open the article or the document again, you have no idea where you left it. But with this extension your problem is solved . This extension saves the scroll position of the page and when you click the "fetch scroll" button the page scrolls to the saved position ✔.

This extension consists of :
👉Simple User Interference🤩
👉Simple User Experience✨

More features coming soon.......✌                    

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

ชื่อ Scrroll-Recall Scrroll-Recall
ID jeppjkgmanikcicbhpohghbjckijageo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scrroll-recall/jeppjkgmanikcicbhpohghbjckijageo
คำอธิบาย An extension to save scroll position of a webpage
ขนาดไฟล์ 21.19 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-08-30
วันที่เผยแพร่ 2021-08-30
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา D.Mahamood Sameer
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scrroll-Recall",
    "version": "1.0.0",
    "description": "An extension to save scroll position of a webpage",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "page_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}