Discogs Enhancer

Adds a dark theme, block sellers, price comparisons, currency converter, configurable quick search, & more to Discogs!

Discogs Enhancerคืออะไร?

Discogs Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.discogs-enhancer.com และคุณลักษณะหลักของมันคือ "Adds a dark theme, block sellers, price comparisons, currency converter, configurable quick search, & more to Discogs!"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Discogs Enhancer is open source: https://github.com/salcido/discogs-enhancer

* Features Overview *

Each feature can be turned on or off to suit your preference.

* Block Sellers in the Marketplace
* Three dark themes to choose from and sync them to your operating system's light / dark preference
* Color coded Media / Sleeve conditions in the Marketplace
* See the number of votes a release has from the Marketplace
* Block Buyers directly from the Order page
* Add a badge next to your favorite Sellers' name when they appear in the Marketplace
* Scan Artist / Label releases for comments
* Reduce white space on the new Artist Pages
* Configurable contextual menu searching
* Infinite scrolling in the Marketplace and your collection
* Tag or hide Sellers based on rating
* Large BAOI fields when editing releases
* Larger YouTube Playlists on the Release page
* Demand Index on release pages
* Currency converter
* Buyer / Seller feedback notifications
* Price suggestion comparisons
* Filter Marketplace items below a specified media condition
* Filter Marketplace items below a specified sleeve condition
* Filter Marketplace items based on which country they ship from
* Filter Marketplace items that are not available in your country
* Filter Marketplace items by price
* Full Width Collection, Wantlist, Orders, and Inventory Pages
* Sort Items in the Marketplace including shipping
* See total play time when track times are provided on a Release page
* Add a badge next to sellers' names when you have an item of theirs in your cart
* Editing Notepad for Releases
* See the actual date and time an item was added to your Collection or Wantlist
* See the relative date an item was last sold in the Marketplace
* Quick Search google for any release by clicking the title of the release 
* See the average price paid for a release on the release page
* Better Collection page UI
* Character counter for personal notes
* Confirm Before Removing Items on Release page
* Text formatting shortcuts on input / textareas for comments
* Remove an item from your wantlist directly from the Marketplace page
* Configure specific sections of Discogs to open links in new tabs
* AND MORE!!!

* A note to users *

If you are having any issues with this extension, please get in touch with me and I'll be happy to fix any bugs you have found: [email protected]. If something stops working it is likely that Discogs has changed the website and the extension needs to be updated to work with the new HTML.

* Privacy Disclaimer *

In accordance with Google's User Data Transparency Policy, Discogs Enhancer does not collect or store any private or personally identifiable information. Discogs Enhancer is not affiliated with Discogs.com. It's developed by me, in my free time, for fun :)                    

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

ชื่อ Discogs Enhancer Discogs Enhancer
ID fljfmblajgejeicncojogelbkhbobejn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/discogs-enhancer/fljfmblajgejeicncojogelbkhbobejn
คำอธิบาย Adds a dark theme, block sellers, price comparisons, currency converter, configurable quick search, & more to Discogs!
ขนาดไฟล์ 2.76 MB
จำนวนการติดตั้ง 9,199
เวอร์ชันปัจจุบัน 3.6.11
อัปเดตครั้งล่าสุด 2024-02-15
วันที่เผยแพร่ 2020-07-04
คะแนน 4.81/5 รวมทั้งหมด 115 คะแนน
ผู้พัฒนา https://www.discogs-enhancer.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.discogs-enhancer.com
URL หน้าช่วยเหลือ https://discogs-enhancer.com/#contact
URL หน้านโยบายความเป็นส่วนตัว https://discogs-enhancer.com/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Discogs Enhancer",
    "short_name": "Discogs Enhancer",
    "description": "Adds a dark theme, block sellers, price comparisons, currency converter, configurable quick search, & more to Discogs!",
    "version": "3.6.11",
    "author": "Matthew Salcido",
    "homepage_url": "https:\/\/www.discogs-enhancer.com",
    "action": {
        "default_icon": {
            "16": "img\/icon_16.png",
            "32": "img\/icon_32.png",
            "48": "img\/icon_48.png",
            "128": "img\/icon_128.png"
        },
        "default_title": "Discogs Enhancer",
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.discogs.com\/*"
            ],
            "js": [
                "js\/extension\/user-preferences.js"
            ],
            "css": [
                "css\/dark-theme.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "js\/extension\/background.js"
    },
    "minimum_chrome_version": "88",
    "permissions": [
        "activeTab",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*",
                "js\/extension\/dependencies\/*",
                "js\/extension\/features\/*"
            ],
            "matches": [
                "*:\/\/*.discogs.com\/*"
            ]
        }
    ]
}