Up Button

Like a back button, but for places you pause vertically on a page!

Up Buttonคืออะไร?

Up Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Will และคุณลักษณะหลักของมันคือ "Like a back button, but for places you pause vertically on a page!"

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

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

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

                        This plugin will mark when you pause on a section of a page, allowing you to navigate vertically.

I wrote this because I spend so much time reading documentation, and need to reference several places in the same doc - so it makes sense to be able to jump to places that you were reading previously!

Works great for:
* research
* documentation
* long pages, lost places

Want to contribute / report bug / request feature? Project is on GitHub at: https://github.com/fowlerwill/UpButton                    

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

ชื่อ Up Button Up Button
ID hnigeamcjfgobhbiommihjdnbdcldoph
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/up-button/hnigeamcjfgobhbiommihjdnbdcldoph
คำอธิบาย Like a back button, but for places you pause vertically on a page!
ขนาดไฟล์ 7.95 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 0.0.15
อัปเดตครั้งล่าสุด 2016-01-17
วันที่เผยแพร่ 2016-01-17
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Will
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.15",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "updownbuttons"
    }
}