mirror of
https://github.com/wassname/Chrome-Arxiv-Vanity.git
synced 2026-06-27 15:13:33 +08:00
26 lines
502 B
JSON
26 lines
502 B
JSON
{
|
|
"manifest_version": 2,
|
|
|
|
"name": "Arxiv Vanity Plugin",
|
|
"description": "This extension provides an arxiv vanity link directly on an accessed arxiv page.",
|
|
"version": "1.1",
|
|
|
|
"background" : {
|
|
"scripts" : ["background.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "arxivchrome.png"
|
|
},
|
|
"permissions": [
|
|
"activeTab",
|
|
"tabs",
|
|
"*://*.arxiv.org/*"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.arxiv.org/abs/*"],
|
|
"js": ["arxivvanitymod.js"]
|
|
}
|
|
]
|
|
}
|