mirror of
https://github.com/momenbasel/keyFinder.git
synced 2026-04-30 00:28:02 +02:00
24 lines
511 B
JSON
24 lines
511 B
JSON
{
|
|
"name": "KeyFinder",
|
|
"description": "a browser extension that searches the DOM for leaked keys🔑.",
|
|
"version":"1.0.0",
|
|
"manifest_version": 2,
|
|
"browser_action":{
|
|
"default_icon":"./css/icon.png",
|
|
"default_popup":"popup.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches":[
|
|
"<all_urls>"
|
|
],
|
|
"js": ["./js/results.js","./js/jquery.js","./js/content.js"]
|
|
}
|
|
],
|
|
"background": {
|
|
"scripts":["./js/background.js"]
|
|
}
|
|
,
|
|
"permissions": ["activeTab","storage"]
|
|
}
|