Bookmarklet IDE
An IDE used for creating / managing bookmarklets
Was ist Bookmarklet IDE?
Bookmarklet IDE ist eine Chrome-Erweiterung, die von https://ddavison.io entwickelt wurde, und ihr Hauptmerkmal ist "An IDE used for creating / managing bookmarklets".
Erweiterungsscreenshots
Bookmarklet IDE-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bookmarklet IDE-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Bookmarklet IDE |
ID | peebnjhlifoemfpcffdlbcdppmikglek |
Offizielle URL | https://chromewebstore.google.com/detail/bookmarklet-ide/peebnjhlifoemfpcffdlbcdppmikglek |
Beschreibung | An IDE used for creating / managing bookmarklets |
Dateigröße | 852 KB |
Installationsanzahl | 384 |
Aktuelle Version | 1.4.1 |
Letztes Update | 2022-04-06 |
Veröffentlichungsdatum | 2019-03-08 |
Bewertung | 4.00/5 Insgesamt 3 Bewertungen |
Entwickler | https://ddavison.io |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/ddavison/chrome-bookmarklet-ide |
Hilfeseite URL | https://github.com/ddavison/chrome-bookmarklet-ide/issues |
Unterstützte Sprachen | 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" } } |