Bookmarklet IDE
An IDE used for creating / managing bookmarklets
Cos'è Bookmarklet IDE?
Bookmarklet IDE è un'estensione di Chrome sviluppata da https://ddavison.io, e la sua funzione principale è "An IDE used for creating / managing bookmarklets".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bookmarklet IDE
Scarica i file di estensione Bookmarklet IDE in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Create and manage your bookmarklets with ease. Find a bookmarklet online? Add it to the IDE easily by right clicking the snippet and adding it to the IDE. The IDE uses a bookmarklet folder in your Chrome bookmarks, so you still have full control. The bookmarklet IDE is also themeable. Informazioni di Base sull'Estensione
| Nome | |
| ID | peebnjhlifoemfpcffdlbcdppmikglek |
| URL Ufficiale | https://chromewebstore.google.com/detail/bookmarklet-ide/peebnjhlifoemfpcffdlbcdppmikglek |
| Descrizione | An IDE used for creating / managing bookmarklets |
| Dimensione del File | 852 KB |
| Conteggio Installazioni | 384 |
| Versione Corrente | 1.4.1 |
| Ultimo Aggiornamento | 2022-04-06 |
| Data di Pubblicazione | 2019-03-08 |
| Valutazione | 4.00/5 Totale 3 Valutazioni |
| Sviluppatore | https://ddavison.io |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/ddavison/chrome-bookmarklet-ide |
| URL della Pagina di Aiuto | https://github.com/ddavison/chrome-bookmarklet-ide/issues |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bookmarklet IDE",
"short_name": "IDE for Bookmarklets",
"description": "An IDE used for creating \/ managing bookmarklets",
"author": "ddavison",
"homepage_url": "https:\/\/github.com\/ddavison\/chrome-bookmarklet-ide",
"version": "1.4.1",
"manifest_version": 2,
"browser_action": {
"default_title": "Bookmarklet IDE",
"default_popup": "popup.html",
"default_icon": {
"512": "assets\/images\/ide-logo-512.png",
"128": "assets\/images\/ide-logo-128.png",
"48": "assets\/images\/ide-logo-32.png",
"24": "assets\/images\/ide-logo-24.png",
"16": "assets\/images\/ide-logo-16.png"
}
},
"background": {
"scripts": [
"assets\/js\/constant.js"
]
},
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"offline_enabled": true,
"permissions": [
"bookmarks",
"storage",
"contextMenus"
],
"icons": {
"512": "assets\/images\/ide-logo-512.png",
"128": "assets\/images\/ide-logo-128.png",
"48": "assets\/images\/ide-logo-32.png",
"24": "assets\/images\/ide-logo-24.png",
"16": "assets\/images\/ide-logo-16.png"
}
} | |