|
- {
- "name": "FurAffinity Filter",
- "version": "0.1",
- "description": "Filters out reminder/YCH/adopt spam from the front page",
- "permissions": [
- "tabs",
- "*://www.furaffinity.net/",
- "storage"
- ],
- "web_accessible_resources": [
- "inject.js"
- ],
- "background": {
- "scripts": ["background.js"]
- },
- "content_scripts": [
- {
- "run_at": "document_start",
- "matches": ["*://www.furaffinity.net/"],
- "js": ["filter.js"]
- },
- {
- "run_at": "document_end",
- "matches": ["*://www.furaffinity.net/"],
- "js": ["run-filter.js"]
- }
- ],
- "browser_action": {
- "default_popup": "config.html"
- },
- "manifest_version": 2
- }
|