Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "NeoAO3",
"description": "A WebExtension to enhance the user experience of Archive of Our Own (AO3) website.",
"version": "0.0.1",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"96": "icon\/96.png",
"128": "icon\/128.png"
},
"permissions": [
"storage",
"activeTab",
"declarativeNetRequest"
],
"host_permissions": [],
"declarative_net_request": {
"rule_resources": [
{
"id": "modify_headers",
"enabled": true,
"path": "rules.json"
}
]
},
"author": {
"email": "[email protected]"
},
"action": {
"default_icon": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"96": "icon\/96.png",
"128": "icon\/128.png"
}
},
"homepage_url": "https:\/\/rxliuli.com\/project\/neo-ao3",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/archiveofourown.org\/*"
],
"run_at": "document_start",
"js": [
"content-scripts\/content.js"
]
}
]
}