JoshuaTree

Usability enhancements for The Housing Bubble Blog (http://housingbubble.blog)

JoshuaTreeคืออะไร?

JoshuaTree เป็นส่วนขยายของ Chrome ที่พัฒนาโดย drumminj และคุณลักษณะหลักของมันคือ "Usability enhancements for The Housing Bubble Blog (http://housingbubble.blog)"

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

screenshot
screenshot

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

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

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

                        The Joshua Tree Extension adds usability enhancements to assist in reading the Housing Bubble Blog, including:

   * Displays the number of new/unread comments in each post summary
   * Hilights new comments so they're easily identifiable
   * Adds a toolbar for jumping forward/backward to the next new comment
   * Ability to ignore(automatically collapse) posts from specified users
   * Adds text formatting buttons to the comment authoring environment
   * Checks for unclosed HTML tags when posting a comment

Version 4.11.0 adds feature (enabled by default) which inlines any images linked in the body of a comment

Version 4.10.0 implements fuzzy username comparisons when evaluating the ignore list

Version 4.8.0 adds "Mark all contents read" context menu to Next button in toolbar

Version 4.7.0 adds "auto-quote" behavior that automatically quotes (wraps in 'emphasis' tag) and selected text when you click the 'Reply' link

Version 4.6.0 adds basic HTML validation on comment submission

Version 4.5.0 adds format buttons for comment editing

Version 4.3.0 Tweaks the color of ignored comments and attempts to fix an animation timing issue.

Version 4.2.0 adds back ignore list functionality

Version 4.1.0 adds back the options menu (ignore list still not functional), as well as makes the extension/toolbar more mobile-friendly.

Version 4.0.0 adds partial support for the new blog format, limited to new comment count on main page, and toolbar + new comment navigation on comments page.                    

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

ชื่อ JoshuaTree JoshuaTree
ID bpijogddiefkbkfjnlejhkeemoeapiim
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/joshuatree/bpijogddiefkbkfjnlejhkeemoeapiim
คำอธิบาย Usability enhancements for The Housing Bubble Blog (http://housingbubble.blog)
ขนาดไฟล์ 60.89 KB
จำนวนการติดตั้ง 62
เวอร์ชันปัจจุบัน 4.12.2
อัปเดตครั้งล่าสุด 2022-12-18
วันที่เผยแพร่ 2019-07-25
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา drumminj
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/drumminj/joshuatree/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JoshuaTree",
    "description": "Usability enhancements for The Housing Bubble Blog (http:\/\/housingbubble.blog)",
    "version": "4.12.2",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "icons": {
        "16": "images\/jt16.png",
        "32": "images\/jt32.png",
        "48": "images\/jt48.png",
        "128": "images\/jt128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/housingbubble.blog\/",
                "*:\/\/housingbubble.blog\/*\/",
                "*:\/\/housingbubble.blog\/?paged=*"
            ],
            "css": [
                "css\/joshuatree.css",
                "css\/loadIndicator.css",
                "css\/overrides.css"
            ],
            "js": [
                "scripts\/animation.js",
                "scripts\/commentData.js",
                "scripts\/loadIndicator.js",
                "scripts\/resources.js",
                "scripts\/utility.js",
                "scripts\/storage.js",
                "scripts\/joshuatree-mainpage.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/housingbubble.blog\/?p=*"
            ],
            "css": [
                "css\/contextmenu.css",
                "css\/joshuatree.css",
                "css\/loadIndicator.css",
                "css\/overrides.css",
                "css\/toolbar.css"
            ],
            "js": [
                "scripts\/animation.js",
                "scripts\/comment.js",
                "scripts\/commentData.js",
                "scripts\/commentProcessor.js",
                "scripts\/contextMenu.js",
                "scripts\/editorEnhancements.js",
                "scripts\/htmlValidator.js",
                "scripts\/loadIndicator.js",
                "scripts\/options.js",
                "scripts\/preferences.js",
                "scripts\/resources.js",
                "scripts\/utility.js",
                "scripts\/storage.js",
                "scripts\/toolbar.js",
                "scripts\/joshuatree.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "images\/*.gif"
    ]
}