Bookmarklet IDE

An IDE used for creating / managing bookmarklets

What is Bookmarklet IDE?

Bookmarklet IDE is a Chrome extension developed by https://ddavison.io, and its main feature is "An IDE used for creating / managing bookmarklets".

Extension Screenshots

screenshot
screenshot
screenshot

Download Bookmarklet IDE Extension CRX File

Download Bookmarklet IDE extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Bookmarklet IDE Bookmarklet IDE
ID peebnjhlifoemfpcffdlbcdppmikglek
Official URL https://chromewebstore.google.com/detail/bookmarklet-ide/peebnjhlifoemfpcffdlbcdppmikglek
Description An IDE used for creating / managing bookmarklets
File Size 852 KB
Installation Count 384
Current Version 1.4.1
Last Updated 2022-04-06
Publish Date 2019-03-08
Rating 4.00/5 Total 3 Ratings
Developer https://ddavison.io
Email [email protected]
Payment Type free
Extension Website https://github.com/ddavison/chrome-bookmarklet-ide
Help Page URL https://github.com/ddavison/chrome-bookmarklet-ide/issues
Supported Languages 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"
    }
}