Reddit Hover Text

Shows the content of a reddit text post when you hover on it's link.

Reddit Hover Textคืออะไร?

Reddit Hover Text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://zoeetrope.com และคุณลักษณะหลักของมันคือ "Shows the content of a reddit text post when you hover on it's link."

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

screenshot
screenshot

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

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

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

                        Displays the contents of text submissions in a box under the link when you hover on the link. Does the same thing Hover Zoom does for images but for text submissions. Very convenient if you read a lot of self subreddits.

Version 0.9.1
Fixes an issue with future versions of Chrome that introduce stricter security related to fetching data from websites.

Version 0.9
Adds support for Chrome version 73 and up.
Fixes an issue where links wouldn't get marked as visited when not using www.reddit.com.

Version 0.8
Add support for the old.reddit.com domain.

Version 0.7
Fixes a bug which broke all links starting with the letter g (https://gyfcat.com/... for example).

Version 0.6
Support for RES night mode.

Version 0.5
Fixes a silly mistake made in 0.4.

Version 0.4
Fixes issues related to changes in the Reddit page structure and https forcing.

Version 0.3
Fixes RES never-ending scroll and significantly improved performance.                    

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

ชื่อ Reddit Hover Text Reddit Hover Text
ID phhpajlkjeoakfmckfnogpnfeidgbhil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reddit-hover-text/phhpajlkjeoakfmckfnogpnfeidgbhil
คำอธิบาย Shows the content of a reddit text post when you hover on it's link.
ขนาดไฟล์ 61.33 KB
จำนวนการติดตั้ง 10,552
เวอร์ชันปัจจุบัน 0.9.1
อัปเดตครั้งล่าสุด 2019-10-23
วันที่เผยแพร่ 2019-10-23
คะแนน 3.43/5 รวมทั้งหมด 61 คะแนน
ผู้พัฒนา https://zoeetrope.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://zoeetrope.com/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Hover Text",
    "version": "0.9.1",
    "manifest_version": 2,
    "description": "Shows the content of a reddit text post when you hover on it's link.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "history"
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.reddit.com\/*",
                "https:\/\/www.reddit.com\/*",
                "http:\/\/old.reddit.com\/*",
                "https:\/\/old.reddit.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "reddit-hover.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "ajax-loader.gif",
        "ajax-loader-night.gif"
    ]
}