Skip to content

Instantly share code, notes, and snippets.

@ljmotta
Created October 13, 2020 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ljmotta/fecc36453e68b8422152805a18cc13ef to your computer and use it in GitHub Desktop.
Save ljmotta/fecc36453e68b8422152805a18cc13ef to your computer and use it in GitHub Desktop.
Base64Png Chrome Extension Manifest
{
"name": "Kogito Base64 PNG Editor",
"version": "0.6.0",
"manifest_version": 2,
"description": "Kogito Base64 PNG Editor",
"icons": {
"128": "resources/icon_128.png"
},
"content_scripts": [
{
"run_at": "document_idle",
"js": ["contentscript.js"],
"matches": ["https://github.com/*"],
"all_frames": true
}
],
"permissions": [
"https://*.github.com/*",
"http://*.github.com/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment