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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Odysee pages with a download button do not show any image. This adds the thumbnail image (but bigger) above the download button."입니다.
확장 프로그램 스크린샷
ThumbSee 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } |