OfferUp Helper
Helps to manage boards and unlisted/removed items from you boards.
什麼是OfferUp Helper?
OfferUp Helper是由Mikhail Kinchin開發的Chrome擴展程式,該擴展的主要功能是“Helps to manage boards and unlisted/removed items from you boards.”。
擴展截圖
下載OfferUp Helper擴展crx文件
下載OfferUp Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension adds some functionality to OfferUp.com which the site does not provide. Current functionality: * Now you can remove items from your boards ("saved" shopping list) without need to jump to item's page, which can even impossible in case item has been removed by publisher. * Also using this extension you can remove whole board if you need so.
擴展基本資訊
名稱 | |
ID | pgllhmdhdoijdnjkegeecaidmpdgolok |
官方網址 | https://chrome.google.com/webstore/detail/offerup-helper/pgllhmdhdoijdnjkegeecaidmpdgolok |
簡介 | Helps to manage boards and unlisted/removed items from you boards. |
檔案大小 | 41.79 KB |
安裝次數 | 134 |
目前版本 | 1.1.1 |
更新時間 | 2021-01-08 |
上架時間 | 2020-10-13 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Mikhail Kinchin |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OfferUp Helper", "version": "1.1.1", "description": "Helps to manage boards and unlisted\/removed items from you boards.", "manifest_version": 2, "permissions": [ "webRequest" ], "content_scripts": [ { "matches": [ "https:\/\/offerup.com\/board\/*", "https:\/\/offerup.com\/boards\/" ], "js": [ "js\/jquery-3.4.1.min.js", "js\/common.js", "js\/content.js" ], "css": [ "css\/main.css" ] } ], "icons": { "16": "images\/logo_16x16.png", "32": "images\/logo_32x32.png", "48": "images\/logo_48x48.png", "128": "images\/logo_128x128.png" }, "background": { "scripts": [ "js\/background.js" ] } } |