ReadingRuler

A reading aid for pages with wiiiiiiide paragraphs.

ReadingRulerคืออะไร?

ReadingRuler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ruinunes และคุณลักษณะหลักของมันคือ "A reading aid for pages with wiiiiiiide paragraphs."

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

screenshot

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

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

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

                        Based on this script:
https://greasyfork.org/en/scripts/372448-reading-ruler/code

This reading ruler will aid you on reading texts on the internet
It will place a semi-transparent line on your screen, just hit the combination ctrl + r on windows and mac (not the command button but the control button) to activate the ruler, hit the same configuration to remove the ruler

This idea come from the reddit user /u/VectorLightning
And the thread can be found here: https://www.reddit.com/r/SomebodyMakeThis/comments/9huwbw/smt_a_firefox_addon_that_adds_a_horizontal/

I hope you find this extension useful

Releases Notes:
V4.0
Redo of the extension, all the features introduced on V3.1 were causing a lot of bug, surprisingly there are still people using and finding this extension, so I decided to simplify it and make it work on all websites. I hope this update fixes all major issues reported on the feedback page.

Here a list of changes:
- You are not able to set a shortcut anymore, for now these are set by default.
  - Windows: ALT + SHIFT + 3
  - Mac: Command + SHIFT + U
- Color and opacity are still options that you can change
- Add save button to apply changes done to the ruler color and opacity
- Fix issue with ruler not working on multiple websites
- Simplified core mechanism to allow extension to always work


V3.1
Lots of improvements, extension should now always work and should not be invisible

- fix problem where ruler would not show on screen (for real this time!)
- new popup layout with 2 new options
  - you now can choose a color for your ruler
  - you can now set how visible you want your ruler to be
- update core code
  - remove itself when its orphaned
  - create functions to prevent references on event handlers
  - remove unnecessary calls to background script
  - overall improve code to work better

v3.0.1
- Avoid exceptions when extension is updated
- Increase z index of ruler to try to push to the foreground

v3.0
- Code rewrite to make extension function properly
- Update manifest to V3
- Fix extension so it should only show the ruler when active
- Drop support for Alt modifier key, you can now only combine CTRL, SHIFT and a keyboard key
- Drop badge text since it was not working anymore

v 2.2
- Fix issue with ruler not showing when pressing the toggle combination

v 2.1
- Add badge to extension icon to let you know the tool is active

v 2.0
- Add options page
  - Allow user to choose from using CTRL, ALT and SHIFT plus a key
- Update and rewrite the entire code to be more OOP                    

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

ชื่อ ReadingRuler ReadingRuler
ID llfjhgjhieplblmacijlmdfffocjhpbh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/readingruler/llfjhgjhieplblmacijlmdfffocjhpbh
คำอธิบาย A reading aid for pages with wiiiiiiide paragraphs.
ขนาดไฟล์ 50.6 KB
จำนวนการติดตั้ง 705
เวอร์ชันปัจจุบัน 4.0
อัปเดตครั้งล่าสุด 2023-12-31
วันที่เผยแพร่ 2018-10-03
คะแนน 3.62/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา ruinunes
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/NoStudioDude/ReadingRuler-Extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ReadingRuler",
    "description": "A reading aid for pages with wiiiiiiide paragraphs.",
    "version": "4.0",
    "icons": {
        "512": "512.png"
    },
    "commands": {
        "ruler": {
            "suggested_key": {
                "default": "Alt+Shift+3",
                "mac": "Command+Shift+U"
            },
            "description": "Toggles a reading aid for pages with wiiiiiiide paragraphs."
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "512.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}