grpc-protobufjs-devtools
grpc, proto, protobufjs, devtools, chrome, extensions
Was ist grpc-protobufjs-devtools?
grpc-protobufjs-devtools ist eine Chrome-Erweiterung, die von ttshangxiang entwickelt wurde, und ihr Hauptmerkmal ist "grpc, proto, protobufjs, devtools, chrome, extensions".
Erweiterungsscreenshots
grpc-protobufjs-devtools-Erweiterungs-CRX-Datei herunterladen
Laden Sie grpc-protobufjs-devtools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
### use 1, 使用node和protobufjs创建proto.js。 ``` javascript const pbjs = require("protobufjs/cli/pbjs"); const fs = require('fs'); const path = require('path'); const glob = require('glob'); const protoPath = 'src/proto/**/*.proto'; // origin path const protos = glob.sync(protoPath); pbjs.main([ "--target", "json-module", "-w", "commonjs", ...protos], function(err, output) { if (err) throw err; // target path fs.writeFileSync(path.resolve(__dirname, './src/xxx/proto.js'), output); }); ``` 2, 挂载json字符串到window。 ``` javascript const $root = require('./src/xxx/proto.js'); window.__DEVTOOLS_PROTO_JSON_STRING__ = JSON.stringify($root.toJSON({keepComments: true})); ```
Grundlegende Informationen zur Erweiterung
Name | grpc-protobufjs-devtools |
ID | hlpccefinpildddaohjbonjdddnefnmg |
Offizielle URL | https://chromewebstore.google.com/detail/grpc-protobufjs-devtools/hlpccefinpildddaohjbonjdddnefnmg |
Beschreibung | grpc, proto, protobufjs, devtools, chrome, extensions |
Dateigröße | 301 KB |
Installationsanzahl | 526 |
Aktuelle Version | 0.0.3 |
Letztes Update | 2019-06-21 |
Veröffentlichungsdatum | 2019-06-21 |
Bewertung | 3.50/5 Insgesamt 2 Bewertungen |
Entwickler | ttshangxiang |
Zahlungsart | free |
Unterstützte Sprachen | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "grpc-protobufjs-devtools", "version": "0.0.3", "description": "grpc, proto, protobufjs, devtools, chrome, extensions", "background": { "scripts": [ "background.js" ], "persistent": false }, "devtools_page": "devtools.html", "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';", "manifest_version": 2 } |