Bookmarklet IDE

An IDE used for creating / managing bookmarklets

ما هو Bookmarklet IDE؟

Bookmarklet IDE هو إضافة Chrome تم تطويرها بواسطة https://ddavison.io، والميزة الرئيسية لها هي "An IDE used for creating / managing bookmarklets".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Bookmarklet IDE

قم بتنزيل ملفات الامتداد Bookmarklet IDE بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان URL الرسمي 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
عنوان صفحة المساعدة 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"
    }
}