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ファイルをダウンロード
Weibo Photo Eraser拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 } |