Weibo Photo Eraser
An Extension to erase photos in weibo album waterfall.
Weibo Photo Eraser क्या है?
Weibo Photo Eraser Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An Extension to erase photos in weibo album waterfall."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Weibo Photo Eraser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } |