Interceptor
Run web clients without backends by mocking HTTP requests
Interceptor là gì?
Interceptor là một tiện ích mở rộng Chrome được phát triển bởi Codemancers, và tính năng chính của nó là "Run web clients without backends by mocking HTTP requests".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Interceptor
Tải xuống các tệp mở rộng Interceptor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Run web clients without backends by mocking HTTP requests During development, often times front-end devs have to wait for the back-end devs to offer an API to work on. Even after the API is given, if the front-end team wants a different set of data to work on, they again need to wait for the changes to be made and hosted. We, front-end developers resort to techniques like storing the data in a variable or using mock API’s. To overcome this, we are working on a browser extension Interceptor, which lets you define your own response, and everytime the browser requests data from a particular URL, returns you with mock data instead of, from the server.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | enenfaicdcfgcnjmiigcjbmlbaoapnen |
URL Chính Thức | https://chrome.google.com/webstore/detail/interceptor/enenfaicdcfgcnjmiigcjbmlbaoapnen |
Mô tả | Run web clients without backends by mocking HTTP requests |
Kích Thước Tệp | 314 KB |
Số Lần Cài Đặt | 4,000 |
Phiên Bản Hiện Tại | 0.3.0 |
Cập Nhật Lần Cuối | 2019-09-23 |
Ngày Phát Hành | 2019-09-23 |
Đánh Giá | 3.00/5 Tổng số 22 Đánh Giá |
Nhà Phát Triển | Codemancers |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/code-mancers/interceptor |
URL Trang Trợ Giúp | https://github.com/code-mancers/interceptor/issues |
URL Trang Chính Sách Bảo Mật | https://github.com/code-mancers/interceptor/blob/master/Privacy-policy.md |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Interceptor", "description": "Run web clients without backends by mocking HTTP requests", "version": "0.3.0", "manifest_version": 2, "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "lib\/nise.min.js" ], "browser_action": { "default_title": "Interceptor", "default_popup": "index.html", "default_icon": "images\/icon.png" }, "permissions": [ "webRequest", "tabs", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "webNavigation" ] } |