You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
435 B
JSON

{
"manifest_version": 2,
"name": "[your extension name here]",
"description": "[your extension description here]",
"version": "1.0",
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
}
// https://9to5google.com/2015/06/14/how-to-make-a-chrome-extensions/