youtube-herp-derp-browser-e.../manifest.json

24 lines
590 B
JSON
Raw Normal View History

2019-03-20 02:54:00 +00:00
{
"manifest_version": 2,
"name": "YouTube Herp Derp",
"description": "Replaces YouTube comments with herp derps. Forked from github.com/twstokes/herpderp",
"homepage_url": "https://michael.is",
"version": "1.0",
"icons": {
"48": "icons/herp48.png",
"128": "icons/herp128.png"
},
"content_scripts": [
{
"run_at": "document_idle",
"all_frames": false, // Ignore iframes.
"matches": [
"https://apis.google.com/*",
"https://plus.googleapis.com/*",
"https://www.youtube.com/*"
],
"js": ["./index.js"]
}
]
}