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 |
| 电子邮箱 | [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"
}
} | |