Chrome 插件

Chrome 常用插件

  • Sourcegraph:可以在 GitHub 上直接浏览项目。
  • JSON-handle:JSON 格式转换。
  • Markdown Nice:微信公众号排版
  • 壹伴:微信公众号排版
  • ……

编写 Chrome 插件

起因在于使用掘金插件时,打算自己写个量身定制的标签页:(还未仔细研究,简单记录下)

chromelabel.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script src="chromejs.js"></script>
<style>
* {
padding: 0px;
margin: 0px;
}
</style>
</head>

<body>
<!-- <iframe src="https://blove7.cn/" style="width: 100%;height:100vh;border: none;"></iframe> -->
</body>
</html>
chromelabel.js
1
window.location.replace("https://blove7.cn/");
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "Getting Started Example",
"description": "Build an Extension!",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"tabs",
"activeTab",
"notifications",
"storage"
],
"chrome_url_overrides": {
"newtab": "chromelabel.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' https://blove7.cn/;"
}
}

其他

如果提示 - 您的连接不是私密连接 :

chrome://net-internals/#hsts


备注

欢迎关注微信公众号:非也缘也