dns-killer/manifest.json

25 lines
561 B
JSON
Raw Normal View History

2018-07-07 21:05:26 +08:00
{
"manifest_version": 2,
2020-11-04 17:59:31 +08:00
"name": "dns-killer",
"description": "DNS缓存杀手,一键清除chrome的DNS缓存, 并刷新当前选项卡。 web开发的利器。",
"version": "1.0.0",
2018-07-07 21:05:26 +08:00
"author": "yutent",
"icons": {
"64": "icon64.png",
"128": "icon128.png",
"256": "icon256.png"
},
"background": {
2020-11-04 17:59:31 +08:00
"scripts": ["background.js"]
},
2018-07-07 21:05:26 +08:00
"browser_action": {
"default_icon": "icon64.png"
},
2021-01-16 17:41:18 +08:00
"permissions": [
"tabs",
"chrome://net-internals/#dns",
"chrome://extensions/"
],
"homepage_url": "https://yutent.top"
2018-07-07 21:05:26 +08:00
}