dns-killer/manifest.json

26 lines
532 B
JSON
Raw Normal View History

2018-07-07 21:05:26 +08:00
{
"manifest_version": 2,
"name": "DNS Flush",
"description": "一键清除chrome的DNS缓存, 并刷新当前选项卡。 web开发的利器。",
2018-07-29 14:09:34 +08:00
"version": "0.3",
2018-07-07 21:05:26 +08:00
"author": "yutent",
"icons": {
"64": "icon64.png",
"128": "icon128.png",
"256": "icon256.png"
},
"background": {
"scripts": [ "background.js" ]
},
"browser_action": {
"default_icon": "icon64.png"
},
"permissions": [
"tabs",
2018-07-29 14:09:34 +08:00
"chrome://net-internals/#dns",
2018-07-07 21:05:26 +08:00
"*://*/*"
],
"homepage_url": "https://doui.cc"
}