Builder.io
Builder.io chrome extension
Wat is Builder.io?
Builder.io is een Chrome-extensie ontwikkeld door https://builder.io, en de belangrijkste functie is "Builder.io chrome extension".
Extensie Screenshots
Download het CRX-bestand van de extensie Builder.io
Download Builder.io-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Builder.io extension for chrome. Allows you to visually see what Builder content is on a given page, and easily jump in and edit it. Basisinformatie over de Extensie
| Naam | |
| ID | cfldfgibklhmjhnkfighkbafbkbfcmij |
| Officiële URL | https://chromewebstore.google.com/detail/builderio/cfldfgibklhmjhnkfighkbafbkbfcmij |
| Beschrijving | Builder.io chrome extension |
| Bestandsgrootte | 393 KB |
| Aantal Installaties | 9,000 |
| Huidige Versie | 1.0.7 |
| Laatst Bijgewerkt | 2023-08-17 |
| Publicatiedatum | 2020-05-20 |
| Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | https://builder.io |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://www.builder.io |
| URL van de Privacybeleid Pagina | https://builder.io/docs/privacy |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Builder.io",
"version": "1.0.7",
"manifest_version": 2,
"description": "Builder.io chrome extension",
"homepage_url": "https:\/\/builder.io",
"icons": {
"16": "icons\/builder-icon-small.png",
"48": "icons\/builder-icon-medium.png",
"128": "icons\/builder-icon-large.png"
},
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"*:\/\/*\/*",
"webRequest",
"webRequestBlocking",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"src\/inject\/inject.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"externally_connectable": {
"matches": [
"*:\/\/*.builder.io\/*",
"*:\/\/localhost:*\/*"
]
}
} | |