netlify-browser-extension
netlify-browser-extension
什么是netlify-browser-extension?
netlify-browser-extension是由swyx开发的Chrome扩展程序,该扩展的主要功能是“netlify-browser-extension”。
扩展截图
下载netlify-browser-extension扩展crx文件
下载netlify-browser-extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
if its an open source netlify site, show a link to source! https://github.com/netlify/netlify-chrome-extension
扩展基本信息
名称 | |
ID | dkhfpnphbcckigklfkaemnjdmghhcaoh |
官方URL | https://chromewebstore.google.com/detail/netlify-browser-extension/dkhfpnphbcckigklfkaemnjdmghhcaoh |
简介 | netlify-browser-extension |
文件大小 | 174 KB |
安装次数 | 277 |
当前版本 | 1.3.0 |
更新时间 | 2019-07-05 |
上架时间 | 2019-06-30 |
评分 | 5.00/5 共2次评分 |
开发者 | swyx |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://www.eff.org/code/privacy/policy |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "netlify-browser-extension", "description": "netlify-browser-extension", "version": "1.3.0", "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" }, "short_name": "netlifyext", "default_locale": "en_US", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "logo16-gray.png", "default_title": "Not hosted on Netlify :(" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "activeTab" ] } |