Endless Page Scroller

This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.

Endless Page Scrollerคืออะไร?

Endless Page Scroller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://namata.ru และคุณลักษณะหลักของมันคือ "This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible."

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

screenshot

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

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

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

                        This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible. Just click on the extension icon and the “Start” button to start scrolling and the “Stop” button to finish it.                    

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

ชื่อ Endless Page Scroller Endless Page Scroller
ID elejfbgccaknplepagepnbpflnoomioj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/endless-page-scroller/elejfbgccaknplepagepnbpflnoomioj
คำอธิบาย This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.
ขนาดไฟล์ 252 KB
จำนวนการติดตั้ง 9,000
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-03-19
วันที่เผยแพร่ 2020-03-19
คะแนน 2.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา https://namata.ru
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://namata.ru/extensions/endlesspagescroller
URL หน้าช่วยเหลือ http://namata.ru/support/thanksforinstall
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Endless Page Scroller",
    "description": "This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.",
    "version": "1.1",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        ""
    ]
}