Skip to content

Instantly share code, notes, and snippets.

@luckscx
Forked from tianyuf/baidu-as-a-network-utility.css
Last active June 5, 2016 13:54
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luckscx/31b37aea1d552c3a56d7784ce289fd2f to your computer and use it in GitHub Desktop.
Save luckscx/31b37aea1d552c3a56d7784ce289fd2f to your computer and use it in GitHub Desktop.
BaaN: Baidu as a Network Utility - 百度的实用主义方法论. - Chrome插件版
body {
display: none;
}
html {
margin: 30px;
}
html::after {
font-family: "BlinkMacSystemFont", "Segoe UI", sans-serif;
content: "Network Status: You have successfully connected to the Internet. ";
}
{
"manifest_version": 2,
"name": "baidu-as-a-network-utility",
"description": "make baidu-as-a-network-utility",
"version": "1.0",
"permissions": [
"tabs",
"https://*.baidu.com/*",
"http://*.baidu.com/*"
],
"content_scripts" : [
{
"matches" : [
"https://*.baidu.com/",
"http://*.baidu.com/"
],
"css" : ["baidu.css"],
"run_at" : "document_idle"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment