Landmark Navigation via Keyboard or Pop-up

Allows you to navigate a web page via WAI-ARIA landmarks, using the keyboard or a pop-up menu.

Landmark Navigation via Keyboard or Pop-upคืออะไร?

Landmark Navigation via Keyboard or Pop-up เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matthew Tylee Atkinson และคุณลักษณะหลักของมันคือ "Allows you to navigate a web page via WAI-ARIA landmarks, using the keyboard or a pop-up menu."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Landmark Navigation via Keyboard or Pop-up

ดาวน์โหลดไฟล์ส่วนขยาย Landmark Navigation via Keyboard or Pop-up ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Landmark regions broadly signpost the areas of a page (e.g. navigation, search, main content and so on). This extension allows you to navigate a web page via its landmarks, *if they've been provided by its author*, using the keyboard or a pop-up menu.

Permissions:

The extension needs to run automatically on all pages, to find any landmark regions and put a badge on the toolbar button, or update the sidebar. This is why it requires permission to access all pages. The extension does not collect any data.

Support:

As this is developed in my own time, I am not able to guarantee timely support, though will be doing what I can to help. I'll be concentrating on fixing bugs, and adding features where this makes sense.

Acknowledgements:

This is a fork of the original landmarks extension written by David Todd at IBM. Thanks to Steve Faulkner for encouraging me to work on this, for feature suggestions, help with the relevant specifications and initial test cases (and again to David Todd for supporting my contributions). Thanks also to The Paciello Group for donating my development time when this was a Firefox-specific extension and during the conversion to the WebExtensions API.

Text and photo for the "World of Wombats" demo site are copyright Wikipedia and JJ Harrison and distributed under the CC BY-SA 3.0 licence. Details available at: http://matatk.agrip.org.uk/landmarks/world-of-wombats/#copyright-info                    

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

ชื่อ Landmark Navigation via Keyboard or Pop-up Landmark Navigation via Keyboard or Pop-up
ID ddpokpbjopmeeiiolheejjpkonlkklgp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/landmark-navigation-via-k/ddpokpbjopmeeiiolheejjpkonlkklgp
คำอธิบาย Allows you to navigate a web page via WAI-ARIA landmarks, using the keyboard or a pop-up menu.
ขนาดไฟล์ 48.77 KB
จำนวนการติดตั้ง 9,282
เวอร์ชันปัจจุบัน 2.12.0
อัปเดตครั้งล่าสุด 2022-10-10
วันที่เผยแพร่ 2020-03-29
คะแนน 4.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Matthew Tylee Atkinson
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://matatk.agrip.org.uk/landmarks/
URL หน้าช่วยเหลือ https://github.com/matatk/landmarks/issues
URL หน้านโยบายความเป็นส่วนตัว http://matatk.agrip.org.uk/landmarks/privacy
ภาษาที่รองรับ en-GB,en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "minimum_chrome_version": "80",
    "icons": {
        "16": "landmarks-16.png",
        "32": "landmarks-32.png",
        "48": "landmarks-48.png",
        "128": "landmarks-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "landmarks-16.png",
            "24": "landmarks-24.png",
            "32": "landmarks-32.png"
        },
        "default_title": "Landmarks",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "chrome_style": false,
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "",
        "storage",
        "webNavigation",
        "tabs"
    ],
    "manifest_version": 2,
    "name": "__MSG_extensionFullName__",
    "short_name": "__MSG_extensionShortName__",
    "version": "2.12.0",
    "description": "__MSG_extensionDescription__",
    "author": "David Todd, Matthew Tylee Atkinson",
    "homepage_url": "http:\/\/matatk.agrip.org.uk\/landmarks\/",
    "default_locale": "en_GB",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "http:\/\/matatk.agrip.org.uk\/landmarks\/"
            ],
            "js": [
                "addHelpLinkToHomePage.js"
            ]
        }
    ],
    "commands": {
        "toggle-all-landmarks": {
            "description": "__MSG_toggleAllShortcutDescription__"
        },
        "main-landmark": {
            "suggested_key": {
                "default": "Alt+Shift+M"
            },
            "description": "__MSG_mainLandmarkShortcutDescription__"
        },
        "prev-landmark": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "__MSG_previousLandmarkShortcutDescription__"
        },
        "next-landmark": {
            "suggested_key": {
                "default": "Alt+Shift+N"
            },
            "description": "__MSG_nextLandmarkShortcutDescription__"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            }
        }
    },
    "devtools_page": "devtoolsRoot.html"
}