Weasyl Enhancer

Small tweaks to the Weasyl browsing experience

Weasyl Enhancerคืออะไร?

Weasyl Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย noxid.dev และคุณลักษณะหลักของมันคือ "Small tweaks to the Weasyl browsing experience"

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

screenshot

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

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

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

                        Chrome extension to tweak the weasyl browsing experience  
Features added: 
- hovering over thumbnails for 1 second will show a preview of the
submission's description and tags. After a preview has been loaded, the next time you mouse-over the thumb it will appear immediately.
- Large submissions will not have a vertical space larger than the window's height,
and a button has been added to allow you to expand and un-expand it.

V1.3 contains a small compatibility fix that was causing the image expand feature to not work in older versions of chrome

V1.5 adds configurable options (accessable via chrome://extensions ) and the ability to preview small versions of the submissions image.

V1.6 fixes issues with user icons and html special characters (e.g < > &) not displaying properly, and an issue with spacing on the right side of the screen when no image preview is used.

V1.7 
- Added "Search Builder" to search boxes for making advanced search queries from form fields
- Added "OLDER" and "NEWER" links beneath submission images for easier gallery navigation
- Fixed a bug where Character images would not be re-sized

V1.8
- Fixed for new Weasyl thumbnails

V1.9
- Added CSRF fix

V1.10
- Update for new Submission url format

V1.11
- bugfix where +expand didn't work with new submission URLs                    

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

ชื่อ Weasyl Enhancer Weasyl Enhancer
ID cebpdikfnkboikhaeoeniojhhkondccl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/weasyl-enhancer/cebpdikfnkboikhaeoeniojhhkondccl
คำอธิบาย Small tweaks to the Weasyl browsing experience
ขนาดไฟล์ 48.73 KB
จำนวนการติดตั้ง 57
เวอร์ชันปัจจุบัน 1.11
อัปเดตครั้งล่าสุด 2017-01-17
วันที่เผยแพร่ 2017-01-17
คะแนน 3.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา noxid.dev
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/taedixon/WeasylPreviews
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Weasyl Enhancer",
    "version": "1.11",
    "icons": {
        "128": "icon.png",
        "48": "icon48.png"
    },
    "description": "Small tweaks to the Weasyl browsing experience",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.weasyl.com\/*"
            ],
            "js": [
                "weasyl_previewer.js",
                "jquery-1.11.1.min.js",
                "weasyl_advanced_search.js"
            ],
            "css": [
                "preview_styles.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.weasyl.com\/submission\/*",
                "https:\/\/www.weasyl.com\/*\/submissions\/*",
                "https:\/\/www.weasyl.com\/character\/*"
            ],
            "js": [
                "weasyl_small_submission.js",
                "jquery-1.11.1.min.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage"
    ]
}