Better Back Button

A history stack that doesn't discard the forward entries when you navigate.

Better Back Buttonคืออะไร?

Better Back Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shawn.hoover และคุณลักษณะหลักของมันคือ "A history stack that doesn't discard the forward entries when you navigate."

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

screenshot

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

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

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

                        Have you ever noticed how browser history disappears when you're clicking back and forward a lot and then click on a link on a page? This extension helps by making sure your most recently visited sites stay available in one handy dropdown. You can skip opening a new tab for everything under the sun, knowing you won't lose track of where you've been.

See the web site for keyboard usage.

Derived from Dropdown List of Most Visited Links.                    

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

ชื่อ Better Back Button Better Back Button
ID mnjmflfpbdlhinbldepdfegnhldplgnd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/better-back-button/mnjmflfpbdlhinbldepdfegnhldplgnd
คำอธิบาย A history stack that doesn't discard the forward entries when you navigate.
ขนาดไฟล์ 46.88 KB
จำนวนการติดตั้ง 270
เวอร์ชันปัจจุบัน 0.4
อัปเดตครั้งล่าสุด 2015-08-01
วันที่เผยแพร่ 2015-08-01
คะแนน 4.83/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา shawn.hoover
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://bitbucket.org/shoover/better-back-button
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Back Button",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "A history stack that doesn't discard the forward entries when you navigate.",
    "icons": {
        "19": "icon19.png",
        "38": "icon38.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "chrome:\/\/favicon\/"
    ],
    "browser_action": {
        "default_icon": "icon19.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html"
}