Mark Location

Mark a location on a page and scroll to it.

Mark Locationคืออะไร?

Mark Location เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fluks และคุณลักษณะหลักของมันคือ "Mark a location on a page and scroll to it."

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

screenshot
screenshot
screenshot

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

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

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

                        While reading a wall of text you might want to jump around the page and if there are no links, finding the parts you want to check often can be tedious. This add-on helps you in that goal by allowing you to bookmark those locations.

In the new version (0.5.1) you can have permanent marks for pages. They will last until you clear them. This is now a default setting for new installs. Or you can change to have volatile marks that disappear if you refresh the page.

You can configure your own key shortcuts (any won't work, for example shortcuts that Firefox uses) for marking and scrolling in the settings.

Permanent marks use IndexedDB for saved images. So they might be deleted in some case. You might need to refresh page to update marks in some edge cases, as if you have the same page (exact URL) open in several tabs or if you switch between permanent and volatile marks.

For usage, see a demo at https://www.youtube.com/watch?v=XsyrQENMXjg.

---

Changelog

0.5.3

 * Allow users to select key shortcuts more freely.

0.5.2

 * Fix captured image not resizing.

0.5.1

 * Add support for all supported protocols.
 * Add permanent marks feature.

0.4

  * Add number of marks to the browser action badge.

0.3

  * Localize the add-on.                    

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

ชื่อ Mark Location Mark Location
ID kafbgiaafedpibbjcffhfigopjdhmabg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mark-location/kafbgiaafedpibbjcffhfigopjdhmabg
คำอธิบาย Mark a location on a page and scroll to it.
ขนาดไฟล์ 47.13 KB
จำนวนการติดตั้ง 114
เวอร์ชันปัจจุบัน 0.5.3
อัปเดตครั้งล่าสุด 2023-04-11
วันที่เผยแพร่ 2019-11-06
คะแนน 3.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา fluks
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/fluks/mark-location-webextension
URL หน้าช่วยเหลือ https://github.com/fluks/mark-location-webextension/issues
ภาษาที่รองรับ en,fi
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mark Location",
    "version": "0.5.3",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "icons": {
        "16": "chromium\/mark_location_16.png",
        "48": "chromium\/mark_location_48.png",
        "128": "chromium\/mark_location_128.png"
    },
    "options_ui": {
        "page": "settings\/settings.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "common\/browser-polyfill.js",
                "common\/common.js",
                "content_scripts\/location.js"
            ]
        }
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": "chromium\/mark_location_128.png",
        "default_title": "Mark Location",
        "default_popup": "browser_action\/popup.html"
    },
    "background": {
        "scripts": [
            "common\/browser-polyfill.js",
            "common\/idb.js",
            "common\/common.js",
            "background\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "activeTab",
        ""
    ]
}