Offer Extra
Unofficial OfferUp extension
Wat is Offer Extra?
Offer Extra is een Chrome-extensie ontwikkeld door Ihor Bodnarchuk, en de belangrijkste functie is "Unofficial OfferUp extension".
Extensie Screenshots
Download het CRX-bestand van de extensie Offer Extra
Download Offer Extra-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension improves website experience by allowing to:
- Remove favorites (boards)
- Select and remove individual items within the board
- Search your board by using the original search bar
Tags:
OfferUp, Offer Up, Letgo, Let go, Craigslist Basisinformatie over de Extensie
| Naam | |
| ID | eklpnlhgjjchopjcadlfpbohdmfhjdnl |
| Officiële URL | https://chromewebstore.google.com/detail/offer-extra/eklpnlhgjjchopjcadlfpbohdmfhjdnl |
| Beschrijving | Unofficial OfferUp extension |
| Bestandsgrootte | 90.53 KB |
| Aantal Installaties | 262 |
| Huidige Versie | 2.0.0 |
| Laatst Bijgewerkt | 2021-02-08 |
| Publicatiedatum | 2020-06-12 |
| Beoordeling | 3.67/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | Ihor Bodnarchuk |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://codespaceinc.co |
| Help Pagina-URL | https://github.com/ihorbond/offer-extra |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Offer Extra",
"version": "2.0.0",
"description": "Unofficial OfferUp extension",
"manifest_version": 2,
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "index.html",
"default_title": "Offer Extra",
"default_icon": {
"16": "images\/logo_16x16.png",
"32": "images\/logo_32x32.png",
"128": "images\/logo_128x128.png"
}
},
"permissions": [
"storage",
"declarativeContent",
"webNavigation"
],
"icons": {
"16": "images\/logo_16x16.png",
"32": "images\/logo_32x32.png",
"128": "images\/logo_128x128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/offerup.com\/board\/*"
],
"js": [
"js\/search_script.js",
"js\/board_item_selector_script.js"
]
},
{
"matches": [
"https:\/\/offerup.com\/boards\/*"
],
"js": [
"js\/boards_delete_script.js"
]
},
{
"matches": [
"https:\/\/offerup.com\/item\/detail\/*"
],
"js": [
"js\/car_true_value.js"
],
"css": [
"css\/bootstrap.min.css"
]
}
],
"web_accessible_resources": [
"images\/*.*",
"js\/*.*"
],
"offline_enabled": false
} | |