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": "Github Link Creator (Auto link)",
"version": "1.0.0",
"description": "Creates buttons with links to GitHub from patterns like JIRA-123 on any webpage",
"action": {
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_title": "Github Link Creator (Auto link)",
"default_popup": "index.html"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"options_page": "options.html",
"permissions": [
"storage",
"activeTab",
"tabs"
],
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"icon_github_pr.png",
"icon_github_commit.png"
],
"matches": [
"<all_urls>"
]
}
]
}