Improved Gelbooru upload

Reconstruct the Gelbooru upload page with a bunch of useful features.

Improved Gelbooru uploadคืออะไร?

Improved Gelbooru upload เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Phxstick และคุณลักษณะหลักของมันคือ "Reconstruct the Gelbooru upload page with a bunch of useful features."

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

screenshot

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

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

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

                        This extension reconstructs the Gelbooru image upload page with multiple features that make posting images as convenient and fast as possible.

Interface
- Uses nicely formatted tags instead of plain text
- Displays a large preview of the uploaded image on the side
- Makes it possible to upload multiple pictures in different tabs

Tagging
- Shows warning if an entered tag likely contains a typo or is non-standard
- Type multi-word tags more easily using spaces instead of underscores
- Built-in artist search for quickly adding artist tags given their URL
- Option to split the tag input into custom groups to get a better overview
  over entered tags and facilitate a more systematic approach to tagging
- Change the type of a tag (e.g. to artist/character) with just two clicks

Image upload
- Easily upload images by dragging them from other webpages
- Automatically fills in the source URL when uploading images from Pixiv
- Automatically checks if a picture is already uploaded on Gelbooru:
  1. Starts with a fast MD5 hash check to find posts with the same image 
  2. For images from Pixiv, it conducts a source check using the Pixiv ID
  3. If the searches above didn't find anything, it tries to find posts
     with similar images via reverse image search in the IQDB database                    

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

ชื่อ Improved Gelbooru upload Improved Gelbooru upload
ID ilemnfmnoanhiapnbdjolbojmpkbhbnp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/improved-gelbooru-upload/ilemnfmnoanhiapnbdjolbojmpkbhbnp
คำอธิบาย Reconstruct the Gelbooru upload page with a bunch of useful features.
ขนาดไฟล์ 457 KB
จำนวนการติดตั้ง 62
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2022-10-23
วันที่เผยแพร่ 2022-01-13
ผู้พัฒนา Phxstick
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Phxstick/improved-gelbooru-upload
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Improved Gelbooru upload",
    "version": "1.1.0",
    "description": "Reconstruct the Gelbooru upload page with a bunch of useful features.",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/gelbooru.iqdb.org\/",
        "https:\/\/danbooru.donmai.us\/artists"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.woff2"
            ],
            "matches": [
                "https:\/\/gelbooru.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "48": "icons\/gelbooru-icon-48.png",
        "128": "icons\/gelbooru-icon-128.png"
    },
    "options_page": "settings.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gelbooru.com\/index.php?page=post&s=add"
            ],
            "js": [
                "jquery.js",
                "gelbooruUpload.js"
            ]
        }
    ]
}