Shopify Edit Button
Add a button to edit the displayed shopify blog post and pages
什么是Shopify Edit Button?
Shopify Edit Button是由Andrea Dragotta开发的Chrome扩展程序,该扩展的主要功能是“Add a button to edit the displayed shopify blog post and pages”。
扩展截图
下载Shopify Edit Button扩展crx文件
下载Shopify Edit Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension covers a missing feature in shopify. You have an "Edit" button for products, but not for blog posts or pages!
This extension will add a button that, once clicked, will redirect you to the backoffice and let you edit your post on the fly.
- v. 1.0.2: Added edit buttons for products
- v. 1.0.1: Added edit buttons also for other types of shopify pages (collections/blogs) and a button to the admin site on the homepage
(screenshots made available thanks to the concession of modaedesign.com) 扩展基本信息
| 名称 | |
| ID | jjbnjnahlifmjniecpefeapddjedbhff |
| 官方URL | https://chromewebstore.google.com/detail/shopify-edit-button/jjbnjnahlifmjniecpefeapddjedbhff |
| 简介 | Add a button to edit the displayed shopify blog post and pages |
| 文件大小 | 34.67 KB |
| 安装次数 | 104 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2022-10-15 |
| 上架时间 | 2022-06-22 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Andrea Dragotta |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Shopify Edit Button",
"version": "1.0.2",
"description": "Add a button to edit the displayed shopify blog post and pages",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"js": [
"libraries\/bgscript.js",
"injected.js"
],
"css": [
"injected.css"
],
"matches": [
"https:\/\/*\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"shopify-btn.js"
],
"matches": [
"https:\/\/*\/*"
]
}
],
"action": {
"default_icon": {
"16": "icons\/logo16.png",
"32": "icons\/logo32.png",
"48": "icons\/logo48.png"
}
},
"icons": {
"16": "icons\/logo16.png",
"32": "icons\/logo32.png",
"48": "icons\/logo48.png"
},
"options_page": "options.html",
"manifest_version": 3
} | |