Alvis Zhao
5 years ago
commit
9f4b3e1254
5 changed files with 34 additions and 0 deletions
@ -0,0 +1,6 @@ |
|||||||
|
# 谷歌浏览器书签同步插件 |
||||||
|
|
||||||
|
## 参考引用 |
||||||
|
|
||||||
|
* [chrome extensions Getting Started Tutorial](https://developer.chrome.com/extensions/getstarted) |
||||||
|
* []() |
@ -0,0 +1,2 @@ |
|||||||
|
在多台设备上使用chrome浏览器,由于网络问题导致不同设备上书签同步缓慢,经常导致书签混乱。 |
||||||
|
安装过多个用于同步书签的浏览器扩展,速度和功能都不是很满意,于是想自己做一个同步扩展。 |
@ -0,0 +1,7 @@ |
|||||||
|
<html> |
||||||
|
<body> |
||||||
|
<h1> |
||||||
|
hello extensions |
||||||
|
</h1> |
||||||
|
</body> |
||||||
|
</html> |
After Width: | Height: | Size: 319 B |
@ -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…
Reference in new issue