Something Awful Last Read Redux

Enhances the Something Awful forums with a host of new and exciting features

Something Awful Last Read Reduxคืออะไร?

Something Awful Last Read Redux เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matthew Peveler และคุณลักษณะหลักของมันคือ "Enhances the Something Awful forums with a host of new and exciting features"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Something Awful Last Read Redux

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

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

                        This is a Chrome port of the Firefox SALR extension for the Something Awful Forums.

The original port was done by Scott Ferguson, and has been handed off to this "Redux" branch.

In order to use the highlighting features you must have the appropriate thread tracking options turned on in your User Control Panel on the forums. Since the forums now track threads for you, SALR only enhances the functionality rather than implement it.

Notable features:
- Quick reply
- Thread highlighting
- Mouse navigation
- Keyboard shortcuts
- Order previously seen threads first
- Highlight when people quote you
- Page navigator
- Forums jump list                    

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

ชื่อ Something Awful Last Read Redux Something Awful Last Read Redux
ID bogegdelcjhoaakaepmoglademmhiboo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/something-awful-last-read/bogegdelcjhoaakaepmoglademmhiboo
คำอธิบาย Enhances the Something Awful forums with a host of new and exciting features
ขนาดไฟล์ 449 KB
จำนวนการติดตั้ง 2,748
เวอร์ชันปัจจุบัน 2.5.0
อัปเดตครั้งล่าสุด 2023-11-26
วันที่เผยแพร่ 2016-07-30
คะแนน 4.93/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา Matthew Peveler
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/MasterOdin/salr-chrome/
URL หน้าช่วยเหลือ http://forums.somethingawful.com/showthread.php?threadid=3208437
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Something Awful Last Read Redux",
    "version": "2.5.0",
    "manifest_version": 2,
    "description": "Enhances the Something Awful forums with a host of new and exciting features",
    "browser_specific_settings": {
        "gecko": {
            "id": "SomethingAwfulLastReadRedux@Firefox"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "background": {
        "scripts": [
            "js\/message-handler.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "settings.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "css": [
                "css\/jquery-ui\/jquery-ui.custom.css",
                "css\/mouse-gestures.css",
                "css\/quick-reply.css",
                "css\/threadnotes.css",
                "css\/timg-fix.css",
                "css\/salr.css"
            ],
            "js": [
                "js\/jquery\/jquery-3.5.1.min.js",
                "js\/jquery\/jquery-migrate-3.3.1.min.js",
                "js\/jquery\/jquery-ui.js",
                "js\/jquery\/jquery.transform.min.js",
                "js\/jquery\/jquery.rightclick.js",
                "js\/jquery\/jquery.putCursorAtEnd.1.0.js",
                "js\/bbcode.js",
                "js\/util.js",
                "js\/hotkey-manager.js",
                "js\/mouse-gestures-controller.js",
                "js\/quick-reply-emote-parser.js",
                "js\/quick-reply-preview-parser.js",
                "js\/quick-reply.js",
                "js\/page-navigator.js",
                "js\/post-history.js",
                "js\/salr.js",
                "js\/jquery\/colorpicker.js",
                "js\/background.js"
            ],
            "matches": [
                "*:\/\/forums.somethingawful.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/forums.somethingawful.com\/*",
        "tabs",
        "storage",
        "unlimitedStorage"
    ],
    "optional_permissions": [
        "https:\/\/api.imgur.com\/*",
        "https:\/\/api.twitter.com\/*"
    ],
    "browser_action": {
        "default_icon": "images\/logo16.png",
        "default_title": "Forum Jump List",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "images\/*.gif",
        "images\/*.png",
        "imgur-upload.html",
        "images\/emoticons\/*",
        "js\/jquery\/jquery.min.map"
    ]
}