Bookmarklet IDE

An IDE used for creating / managing bookmarklets

什麼是Bookmarklet IDE?

Bookmarklet IDE是由https://ddavison.io開發的Chrome擴展程式,該擴展的主要功能是“An IDE used for creating / managing bookmarklets”。

擴展截圖

screenshot
screenshot
screenshot

下載Bookmarklet IDE擴展crx文件

下載Bookmarklet IDE擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Bookmarklet IDE Bookmarklet IDE
ID peebnjhlifoemfpcffdlbcdppmikglek
官方網址 https://chromewebstore.google.com/detail/bookmarklet-ide/peebnjhlifoemfpcffdlbcdppmikglek
簡介 An IDE used for creating / managing bookmarklets
檔案大小 852 KB
安裝次數 384
目前版本 1.4.1
更新時間 2022-04-06
上架時間 2019-03-08
評分 4.00/5 共 3 次評分
開發者 https://ddavison.io
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/ddavison/chrome-bookmarklet-ide
說明頁面URL https://github.com/ddavison/chrome-bookmarklet-ide/issues
支援的語言 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"
    }
}