Home Button At Top Right

Provides a button at the top-right of Chrome that links to any pages.

Home Button At Top Rightคืออะไร?

Home Button At Top Right เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://holtstrom.com/michael และคุณลักษณะหลักของมันคือ "Provides a button at the top-right of Chrome that links to any pages."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Home Button At Top Right

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

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

                        This extension provides a button at the top-right of Chrome that links to any pages.

Regarding upgrade: you now have version 1.7 because Chrome requires a manifest change before June 2024. The new system uses different storage, so your homepage url has been deleted. You just need to re-add it (via right-click > options).

Regarding new installs: you have to click the Extensions icon at the top-right of Chrome and pin the new extension in order to see it in your top-bar. Clicking this new home button initially redirects your current tab to Google. Right-click the new home button and choose Options to edit the home-page urls. You can also choose a white icon if you have a dark theme. You can hide the official home button at top left via: Chrome Settings > Appearance > Show home button > Disabled.

This extension only uses the storage permission to remember your settings. This extension never monitors your activity. It only redirects your tabs when requested. The source code is very simple and is posted here https://holtstrom.com/michael/blog/post/412/Home-Button-At-Top-Right-Chrome-Extension.html, so you can inspect it for yourself. Use the "Feedback" button at the top of that article if you want to ask any questions. Be sure to include contact info if you want a reply.

This extension will always be free and will never have ads.

Some people want to link to a local url like "file:///C:/MyFolder/MyFile.html". As described at the above link, Chrome 118 and later removed the ability to redirect to local files. You can enable local navigation for this extension in your windows registry as shown below. 

Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome
ExtensionSettings = { "bfejcgpdahgpmgadhgdadfiekmhgnifm": { "file_url_navigation_allowed": true}}                    

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

ชื่อ Home Button At Top Right Home Button At Top Right
ID bfejcgpdahgpmgadhgdadfiekmhgnifm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/home-button-at-top-right/bfejcgpdahgpmgadhgdadfiekmhgnifm
คำอธิบาย Provides a button at the top-right of Chrome that links to any pages.
ขนาดไฟล์ 9.2 KB
จำนวนการติดตั้ง 6,607
เวอร์ชันปัจจุบัน 1.7
อัปเดตครั้งล่าสุด 2023-12-17
วันที่เผยแพร่ 2019-12-14
คะแนน 4.36/5 รวมทั้งหมด 47 คะแนน
ผู้พัฒนา https://holtstrom.com/michael
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://holtstrom.com/michael/blog/post/412/Home-Button-At-Top-Right-Chrome-Extension.html
URL หน้าช่วยเหลือ https://holtstrom.com/michael/blog/post/412/Home-Button-At-Top-Right-Chrome-Extension.html
URL หน้านโยบายความเป็นส่วนตัว https://holtstrom.com/michael/blog/post/412/Home-Button-At-Top-Right-Chrome-Extension.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Home Button At Top Right",
    "description": "Provides a button at the top-right of Chrome that links to any pages.",
    "version": "1.7",
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "19": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ]
}