Smart Back Buttons

Easily go back a webpage just like a smartphone!

Smart Back Buttonsคืออะไร?

Smart Back Buttons เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Easily go back a webpage just like a smartphone!"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Easy access to the back and forward buttons just like a smartphone. It sits near your mouse cursor is. Browse more, save time. It's a nifty little utility that really works.

*New version 1.8*
minor fixes to code.

*Version 1.7*
You can move the buttons anywhere on the page by clicking anywhere on the page. Then, pressing and holding down "Alt + m" keys and moving your mouse cursor. Release the keys when you want the buttons to their position.

*Version 1.6*
You can now go to your browsing history by hovering your mouse on the "Back" button. Here, you can click links that instantly brings you back to web pages you visited (except Google News since it's a one-page website). 

To pin a link, just hover your mouse on the "Back" button and you will see pin icons on the right of the links. Click these icons you wish to pin.

Just hover your mouse on the "Forward" button, and here you will see your "pinned" links.

To remove pinned links, hover your mouse on the "Forward" button and click on the pin icons. Once you reopen the popup, you will see it removed.

Features:

	Back and Forward buttons on any website.
	Go to any website you visited by hovering on the Back Button. 
	Pin links for easy access later.
  	
  Keyboard Shortcuts:
    Alt + H Opens a new tab
    Alt + B Cycle through tabs
    Alt + C Close a tab

These easy-to-spot buttons will help you navigate any website just like your smartphone. Because who doesn't love our smartphones?

Enjoy this cool product for free!                    

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

ชื่อ Smart Back Buttons Smart Back Buttons
ID kcballhgojbhidlpjhaccanjfdaeiplg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/smart-back-buttons/kcballhgojbhidlpjhaccanjfdaeiplg
คำอธิบาย Easily go back a webpage just like a smartphone!
ขนาดไฟล์ 22.19 KB
จำนวนการติดตั้ง 162
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2020-03-15
วันที่เผยแพร่ 2020-03-14
คะแนน 4.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart Back Buttons",
    "version": "1.8",
    "description": "Easily go back a webpage just like a smartphone!",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "history",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "javascript_keys.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/back_white16.png",
        "images\/forward_white16.png",
        "images\/smart_back48.png",
        "images\/unpinned.png",
        "images\/pinned.png",
        "images\/close_button.png"
    ],
    "icons": {
        "16": "images\/smart_back16.png",
        "32": "images\/smart_back32.png",
        "48": "images\/smart_back48.png",
        "128": "images\/smart_back128.png"
    },
    "commands": {
        "new-tab": {
            "suggested_key": {
                "default": "Alt+H"
            },
            "description": "Opens new tab"
        },
        "close-tab": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Close tab"
        },
        "previous-tab": {
            "suggested_key": {
                "default": "Alt+B"
            },
            "description": "Previous tab"
        }
    }
}