Bookmarklet IDE

An IDE used for creating / managing bookmarklets

Qu'est-ce que Bookmarklet IDE ?

Bookmarklet IDE est une extension Chrome développée par https://ddavison.io, et sa fonction principale est "An IDE used for creating / managing bookmarklets".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Bookmarklet IDE

Téléchargez les fichiers d'extension Bookmarklet IDE au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Bookmarklet IDE Bookmarklet IDE
ID peebnjhlifoemfpcffdlbcdppmikglek
URL Officiel https://chromewebstore.google.com/detail/bookmarklet-ide/peebnjhlifoemfpcffdlbcdppmikglek
Description An IDE used for creating / managing bookmarklets
Taille du Fichier 852 KB
Nombre d'Installations 384
Version Actuelle 1.4.1
Dernière Mise à Jour 2022-04-06
Date de Publication 2019-03-08
Évaluation 4.00/5 Total 3 Évaluations
Développeur https://ddavison.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ddavison/chrome-bookmarklet-ide
URL de la Page d'Aide https://github.com/ddavison/chrome-bookmarklet-ide/issues
Langues Prises en Charge 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"
    }
}