Interceptor
Run web clients without backends by mocking HTTP requests
Interceptorとは何ですか?
InterceptorはCodemancersによって開発されたChromeの拡張機能で、その主な機能は「Run web clients without backends by mocking HTTP requests」です。
拡張機能のスクリーンショット
Interceptor拡張機能のCRXファイルをダウンロード
Interceptor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | enenfaicdcfgcnjmiigcjbmlbaoapnen |
| 公式URL | https://chrome.google.com/webstore/detail/interceptor/enenfaicdcfgcnjmiigcjbmlbaoapnen |
| 説明 | Run web clients without backends by mocking HTTP requests |
| ファイルサイズ | 314 KB |
| インストール数 | 4,000 |
| 現在のバージョン | 0.3.0 |
| 最終更新日 | 2019-09-23 |
| 公開日 | 2019-09-23 |
| 評価 | 3.00/5 合計 22 レビュー |
| 開発者 | Codemancers |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/code-mancers/interceptor |
| ヘルプページのURL | https://github.com/code-mancers/interceptor/issues |
| プライバシーポリシーページのURL | https://github.com/code-mancers/interceptor/blob/master/Privacy-policy.md |
| 対応言語 | 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"
]
} | |