Bookmarklet IDE
An IDE used for creating / managing bookmarklets
Co to jest Bookmarklet IDE?
Bookmarklet IDE to rozszerzenie Chrome opracowane przez https://ddavison.io, a jego główną funkcją jest „An IDE used for creating / managing bookmarklets”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Bookmarklet IDE
Pobierz pliki rozszerzeń Bookmarklet IDE w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | peebnjhlifoemfpcffdlbcdppmikglek |
| Oficjalny URL | https://chromewebstore.google.com/detail/bookmarklet-ide/peebnjhlifoemfpcffdlbcdppmikglek |
| Opis | An IDE used for creating / managing bookmarklets |
| Rozmiar pliku | 852 KB |
| Liczba instalacji | 384 |
| Aktualna Wersja | 1.4.1 |
| Ostatnia Aktualizacja | 2022-04-06 |
| Data Publikacji | 2019-03-08 |
| Ocena | 4.00/5 Łącznie 3 Oceny |
| Deweloper | https://ddavison.io |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/ddavison/chrome-bookmarklet-ide |
| Adres URL Strony Pomocy | https://github.com/ddavison/chrome-bookmarklet-ide/issues |
| Obsługiwane Języki | 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"
}
} | |