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": "ExCiter",
"version": "3.0.5",
"description": "Extracts citations by deleting unwanted bracketed citations and parentheses",
"icons": {
"30": "icons\/nocitation.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"remove.js"
]
}
],
"permissions": [
"storage",
"activeTab",
"scripting"
],
"options_ui": {
"page": "options.html",
"browser_style": true
},
"action": {
"default_icon": "icons\/nocitation.png",
"default_title": "Citation Remover",
"default_popup": "popup\/popup.html"
}
}