Power Xtension
Extension for dispatch
Cos'è Power Xtension?
Power Xtension è un'estensione di Chrome sviluppata da ZigZag, e la sua funzione principale è "Extension for dispatch".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Power Xtension
Scarica i file di estensione Power Xtension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Pro tools for DAT Power & Truckers Edge loadboards Features: RPM VIEW - rate per mile column next to offer rate RPM TOGGLE - view rpm with or without deadhead miles GOOGLE MAPS - trip miles auto redirects to google maps TOTAL MILES - view trip and deadhead miles total RPM CALCULATOR - bi-directional rate/rpm calculator LOAD FILTERS - filter by min rpm, min-max miles, min offer IGNORE STATES- ignore loads by state SHARE LOADS - quick copy & share load details QUICK CITY SEARCH - 1 click destination search PRICE: $5.95 per month support: [email protected]
Informazioni di Base sull'Estensione
Nome | |
ID | mijkgpafjfkdieibmcibecjfadnfieeo |
URL Ufficiale | https://chrome.google.com/webstore/detail/power-xtension/mijkgpafjfkdieibmcibecjfadnfieeo |
Descrizione | Extension for dispatch |
Dimensione del File | 16.85 MB |
Conteggio Installazioni | 489 |
Versione Corrente | 2.9 |
Ultimo Aggiornamento | 2023-06-15 |
Data di Pubblicazione | 2022-10-05 |
Valutazione | 3.43/5 Totale 7 Valutazioni |
Sviluppatore | ZigZag |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Power Xtension", "description": "Extension for dispatch", "version": "2.9", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "webRequest", "storage", "scripting" ], "icons": { "16": "\/images\/power_xtentions_16.png", "48": "\/images\/power_xtentions_48.png", "128": "\/images\/power_xtentions_128.png" }, "action": { "default_icon": "\/images\/power_xtentions_16.png", "default_popup": ".\/login\/login.html", "default_title": "Power Xtension" }, "content_scripts": [ { "css": [ "content.css", "toastr.min.css" ], "js": [ "jquery-3.5.1.min.js", "toastr.min.js", "multi-select-min.js", "states.js", "content.js" ], "matches": [ "https:\/\/power.dat.com\/search\/loads*", "https:\/\/power.dat.com\/postings\/trucks*" ], "run_at": "document_start" }, { "css": [ "truckersEdge.css", "toastr.min.css" ], "js": [ "jquery-3.5.1.min.js", "toastr.min.js", "multi-select-min.js", "states.js", "truckersEdge.js" ], "matches": [ "https:\/\/truckersedge.dat.com\/*" ], "run_at": "document_end" }, { "css": [ "truckersEdge.css", "toastr.min.css" ], "js": [ "jquery-3.5.1.min.js", "toastr.min.js", "multi-select-min.js", "states.js", "datOne.js" ], "matches": [ "https:\/\/one.dat.com\/*" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "inject.js", "\/images\/copy.png", "img\/*", "content.css", "injected.js", "\/*", "\/dist2\/*" ], "matches": [ "https:\/\/truckersedge.dat.com\/*", "https:\/\/power.dat.com\/*", "https:\/\/one.dat.com\/*" ] } ], "host_permissions": [ "https:\/\/power.dat.com\/*", "https:\/\/truckersedge.dat.com\/*", "https:\/\/one.dat.com\/*", "https:\/\/freight.api.prod.dat.com\/trucker\/api\/v1\/freightMatching\/search\/*", "https:\/\/freight.api.dat.com\/one-web-bff\/graphql" ] } |