Browse Source

feat: 初始化hello扩展

master
Alvis Zhao 5 years ago
commit
9f4b3e1254
  1. 6
      README.md
  2. 2
      docs/index.md
  3. 7
      extension/hello.html
  4. BIN
      extension/hello_extensions.png
  5. 19
      extension/manifest.json

6
README.md

@ -0,0 +1,6 @@
# 谷歌浏览器书签同步插件
## 参考引用
* [chrome extensions Getting Started Tutorial](https://developer.chrome.com/extensions/getstarted)
* []()

2
docs/index.md

@ -0,0 +1,2 @@
在多台设备上使用chrome浏览器,由于网络问题导致不同设备上书签同步缓慢,经常导致书签混乱。
安装过多个用于同步书签的浏览器扩展,速度和功能都不是很满意,于是想自己做一个同步扩展。

7
extension/hello.html

@ -0,0 +1,7 @@
<html>
<body>
<h1>
hello extensions
</h1>
</body>
</html>

BIN
extension/hello_extensions.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 B

19
extension/manifest.json

@ -0,0 +1,19 @@
{
"name": "Hello Extensions",
"description": "Base Level Extension",
"version": "1.0",
"manifest_version": 2,
"browser_action": {
"default_popup": "hello.html",
"default_icon": "hello_extensions.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Opens hello.html"
}
}
}
Loading…
Cancel
Save