Save Inspect
Extension for Save Inspection and easy code-less editing!
Save Inspectとは何ですか?
Save InspectはTobi Situによって開発されたChromeの拡張機能で、その主な機能は「Extension for Save Inspection and easy code-less editing!」です。
拡張機能のスクリーンショット
Save Inspect拡張機能のCRXファイルをダウンロード
Save Inspect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Easily edit your existing webpages that are hosted on gitlab using chrome's inspect feature. When you save your changes using the extension, it updates the git files in real time by committing your changes. You can also create new pages as well using the extension and push them to gitlab.
拡張機能の基本情報
名前 | Save Inspect |
ID | okdjjdfncmbfeoklehpmadgcdbnlnabd |
公式URL | https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd |
説明 | Extension for Save Inspection and easy code-less editing! |
ファイルサイズ | 2.73 MB |
インストール数 | 1,468 |
現在のバージョン | 2.0 |
最終更新日 | 2020-02-28 |
公開日 | 2020-02-28 |
評価 | 1.44/5 合計 9 レビュー |
開発者 | Tobi Situ |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Save Inspect", "version": "2.0", "description": "Extension for Save Inspection and easy code-less editing!", "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-app.js https:\/\/*.firebaseio.com https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-auth.js https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-firestore.js; object-src 'self'", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } }, "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "manifest_version": 2 } |