Bookmarklet IDE
An IDE used for creating / managing bookmarklets
Apa itu Bookmarklet IDE?
Bookmarklet IDE adalah ekstensi Chrome yang dikembangkan oleh https://ddavison.io, dan fitur utamanya adalah "An IDE used for creating / managing bookmarklets".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Bookmarklet IDE
Unduh file ekstensi Bookmarklet IDE dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Bookmarklet IDE |
ID | peebnjhlifoemfpcffdlbcdppmikglek |
URL Resmi | https://chromewebstore.google.com/detail/bookmarklet-ide/peebnjhlifoemfpcffdlbcdppmikglek |
Deskripsi | An IDE used for creating / managing bookmarklets |
Ukuran File | 852 KB |
Jumlah Instalasi | 384 |
Versi Saat Ini | 1.4.1 |
Terakhir Diperbarui | 2022-04-06 |
Tanggal Publikasi | 2019-03-08 |
Penilaian | 4.00/5 Total 3 Penilaian |
Pengembang | https://ddavison.io |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/ddavison/chrome-bookmarklet-ide |
URL Halaman Bantuan | https://github.com/ddavison/chrome-bookmarklet-ide/issues |
Bahasa yang Didukung | 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" } } |