Dummy
More than mock.
Cos'è Dummy?
Dummy è un'estensione di Chrome sviluppata da dummy.alibaba, e la sua funzione principale è "More than mock.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dummy
Scarica i file di estensione Dummy 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
应用于开发或测试时Mock数据。
* 无需等待后端API,可使用Mock直接进行逻辑开发
* 方便快捷的管理各种Mock的数据规则
* 方便模拟出数据的边界值,应用于各种数据情况的测试
注:此应用为阿里内网的应用。 Informazioni di Base sull'Estensione
| Nome | |
| ID | khblfpjeccikamdkjelhbdnalmkdjmfn |
| URL Ufficiale | https://chromewebstore.google.com/detail/dummy/khblfpjeccikamdkjelhbdnalmkdjmfn |
| Descrizione | More than mock. |
| Dimensione del File | 531 KB |
| Conteggio Installazioni | 181 |
| Versione Corrente | 1.1.19 |
| Ultimo Aggiornamento | 2021-04-17 |
| Data di Pubblicazione | 2021-01-09 |
| Sviluppatore | dummy.alibaba |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://dummy-mock.alibaba-inc.com |
| Lingue Supportate | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Dummy",
"version": "1.1.19",
"manifest_version": 2,
"description": "More than mock.",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"background": {
"page": "background.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"devtools_page": "devtools.html",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"browser_action": {
"default_title": "More than mock.",
"default_icon": "icon.png",
"default_popup": "default_popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*",
"file:\/\/\/*\/*"
],
"js": [
"start.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"*:\/\/*\/*",
"file:\/\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"homepage_url": "https:\/\/dummy-mock.alibaba-inc.com\/",
"web_accessible_resources": [
"dummy-client.js"
]
} | |