netlify-browser-extension
netlify-browser-extension
Vad är netlify-browser-extension?
netlify-browser-extension är en Chrome-tillägg utvecklad av swyx, och dess huvudfunktion är "netlify-browser-extension".
Tilläggsskärmbilder
Ladda ner netlify-browser-extension-förlängningens CRX-fil
Ladda ner netlify-browser-extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
if its an open source netlify site, show a link to source! https://github.com/netlify/netlify-chrome-extension
Grundläggande Information om Tillägg
Namn | netlify-browser-extension |
ID | dkhfpnphbcckigklfkaemnjdmghhcaoh |
Officiell webbadress | https://chromewebstore.google.com/detail/netlify-browser-extension/dkhfpnphbcckigklfkaemnjdmghhcaoh |
Beskrivning | netlify-browser-extension |
Filstorlek | 174 KB |
Antal Installationer | 277 |
Aktuell Version | 1.3.0 |
Senast Uppdaterad | 2019-07-05 |
Publiceringsdatum | 2019-06-30 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | swyx |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://www.eff.org/code/privacy/policy |
Stödda Språk | 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" ] } |