Airwallex Interceptor
Test your branch without merging
Vad är Airwallex Interceptor?
Airwallex Interceptor är en Chrome-tillägg utvecklad av carl.jin, och dess huvudfunktion är "Test your branch without merging".
Tilläggsskärmbilder
Ladda ner Airwallex Interceptor-förlängningens CRX-fil
Ladda ner Airwallex Interceptor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Run your MFE application without container and test your feature branch without merge.
Grundläggande Information om Tillägg
Namn | Airwallex Interceptor |
ID | lmbgndjaiemmidfecifjijpeahajhpea |
Officiell webbadress | https://chromewebstore.google.com/detail/airwallex-interceptor/lmbgndjaiemmidfecifjijpeahajhpea |
Beskrivning | Test your branch without merging |
Filstorlek | 460 KB |
Antal Installationer | 187 |
Aktuell Version | 2.37.9 |
Senast Uppdaterad | 2024-03-07 |
Publiceringsdatum | 2021-02-15 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | carl.jin |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Airwallex Interceptor", "version": "2.37.9", "description": "Test your branch without merging", "permissions": [ "storage", "declarativeNetRequest" ], "host_permissions": [ "https:\/\/*\/*" ], "action": { "default_popup": "popup\/index.html" }, "icons": { "16": "images\/airwallex.png", "32": "images\/airwallex.png", "48": "images\/airwallex.png", "128": "images\/airwallex.png" }, "manifest_version": 3, "background": { "service_worker": "dist\/serviceWorker.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "dist\/content.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "dist\/*.js" ], "matches": [ "https:\/\/*\/*" ] } ] } |