Scroll Percentage in Tab Title Extension

See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.

Scroll Percentage in Tab Title Extensionคืออะไร?

Scroll Percentage in Tab Title Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dimshik100 และคุณลักษณะหลักของมันคือ "See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scroll Percentage in Tab Title Extension

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

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

                        Chrome extension that updates the page title with the scrolled percentage of the page. Best for blogs and articles. Always see your reading progress, how much you have read and how much is left.                    

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

ชื่อ Scroll Percentage in Tab Title Extension Scroll Percentage in Tab Title Extension
ID fbohjeijkanpeamijojloonklakpncef
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scroll-percentage-in-tab/fbohjeijkanpeamijojloonklakpncef
คำอธิบาย See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.
ขนาดไฟล์ 17.18 KB
จำนวนการติดตั้ง 728
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2020-06-01
วันที่เผยแพร่ 2020-06-01
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา dimshik100
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dimshik100/Scroll-Percentage-in-Tab-Title-Chrome-Extension
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scroll Percentage in Tab Title Extension",
    "short_name": "ScrollPercentageInTabTitle",
    "version": "0.2",
    "author": "Dima Vishnevetsky ",
    "description": "See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.",
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon_extension_toolbar_16.png",
            "32": "icons\/icon_extension_toolbar_32.png"
        },
        "default_title": "Scroll Percentage in Tab Title",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon_extension_toolbar_16.png",
        "32": "icons\/icon_windows_computers_32.png",
        "48": "icons\/icon_extensions_management_page_48.png",
        "128": "icons\/icon_web_store_icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "extensionInjector.js"
            ],
            "css": [],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "extension.js"
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}