ThumbSee

Odysee pages with a download button do not show any image. This adds the thumbnail image (but bigger) above the download button.

ThumbSee क्या है?

ThumbSee treevar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Odysee pages with a download button do not show any image. This adds the thumbnail image (but bigger) above the download button."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ThumbSee एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Quality of life extension that displays the thumbnail of the current item on the page above the download button. (Only does something on pages with a download button)

1.5 Release Notes
===============

Thumbsee 1.5 brings some great new features, such as the ability to move the download button. Now you can move the button next the the Join and Follow buttons, or to the right of the title, or you can always keep the default layout if that's what you really prefer. The next fantastic addition is the ability to auto hide the bottom popup. The popup is much too good at popping up, now you have the ability to make it *pop*. The final feature is the ability to enable/disable the entire extension with the flick of a switch. I don't know why you would ever want to disable it though.

[Major]
 + Added option to move the download button, options include...
  * Default: default button location
  * Title: after title, make the button a bit smaller too
  * Button Group: to the left of the Join button
 + Added option to hide bottom popup
 + Added option to enable/disable entire extension

[Minor]
 + Changed naming on popout                    

एक्सटेंशन की मूल जानकारी

नाम ThumbSee ThumbSee
ID jdgipneahaabnlcfomeogakemmlceofe
आधिकारिक URL https://chromewebstore.google.com/detail/thumbsee/jdgipneahaabnlcfomeogakemmlceofe
विवरण Odysee pages with a download button do not show any image. This adds the thumbnail image (but bigger) above the download button.
फ़ाइल का आकार 42.18 KB
स्थापना संख्या 265
वर्तमान संस्करण 1.5
अंतिम अपडेट 2023-09-15
प्रकाशन तिथि 2023-01-16
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर treevar
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/treevar/ThumbSee
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ThumbSee",
    "version": "1.5",
    "description": "Odysee pages with a download button do not show any image. This adds the thumbnail image (but bigger) above the download button.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/odysee.com\/*"
            ],
            "js": [
                "js\/thumbsee.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/odysee.com\/*"
            ],
            "resources": [
                "js\/common.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "permissions": [
        "storage"
    ]
}