Bookmarklet IDE
An IDE used for creating / managing bookmarklets
Bookmarklet IDEとは何ですか?
Bookmarklet IDEはhttps://ddavison.ioによって開発されたChromeの拡張機能で、その主な機能は「An IDE used for creating / managing bookmarklets」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |