Weibo Photo Eraser
An Extension to erase photos in weibo album waterfall.
Weibo Photo Eraser란 무엇입니까?
Weibo Photo Eraser은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An Extension to erase photos in weibo album waterfall."입니다.
확장 프로그램 스크린샷
Weibo Photo Eraser 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
When we are looking at weibo user's photo wall, as we continue to slide down, a large number of photos will be load to render in the dom tree, if the user has many photos, we may get stuck, so this extension is used to remove photos from front to tail and keep the last 20 photos, it helps a lot to users who are constantly looking forward to old photos. It is a float button right side, and will only be active in 'weibo.com', you can click it in the album page to remove top photos.
확장 프로그램 기본 정보
이름 | Weibo Photo Eraser |
ID | opaaebjcdackobeememacleffoeeoeab |
공식 URL | https://chromewebstore.google.com/detail/weibo-photo-eraser/opaaebjcdackobeememacleffoeeoeab |
설명 | An Extension to erase photos in weibo album waterfall. |
파일 크기 | 102 KB |
설치 횟수 | 33 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2018-06-11 |
출시 날짜 | 2018-06-11 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Weibo Photo Eraser", "version": "1.0.4", "content_scripts": [ { "matches": [ "https:\/\/weibo.com\/*", "http:\/\/weibo.com\/*" ], "js": [ "js\/jquery.js", "js\/toastr.min.js", "js\/delete.js" ], "css": [ "css\/toastr.min.css", "css\/delete.css" ] } ], "description": "An Extension to erase photos in weibo album waterfall.", "permissions": [ "declarativeContent" ], "options_page": "options.html", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/weibo16.png", "32": "images\/weibo32.png", "48": "images\/weibo48.png", "128": "images\/weibo128.png" } }, "icons": { "16": "images\/weibo16.png", "32": "images\/weibo32.png", "48": "images\/weibo48.png", "128": "images\/weibo128.png" }, "manifest_version": 2 } |