-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from izidorio/dev
fix add manifest v3
- Loading branch information
Showing
22 changed files
with
383 additions
and
406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# ! /Bin /bash | ||
echo "empacotanto o sistema .... \n" | ||
zip -r addon-zappull.zip src manifest.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "ZapPull", | ||
"version": "0.6.2", | ||
"description": "Extensão que baixa em .csv ou copia para a área de transferência os participantes dos Grupos do WhatsApp. https://github.com/izidorio/addon-zappull", | ||
"author": "Izidorio Bento <[email protected]>", | ||
"icons": { | ||
"16": "src/assets/icons/icon16.png", | ||
"48": "src/assets/icons/icon48.png", | ||
"128": "src/assets/icons/icon128.png" | ||
}, | ||
"background": { | ||
"page": "src/html/background.html" | ||
}, | ||
"description": "Exportar os participantes dos Grupos do WhatsApp. https://github.com/izidorio/addon-zappull", | ||
"version": "1.0.0", | ||
"manifest_version": 3, | ||
"author": "Bento, Izidorio <[email protected]>", | ||
"permissions": ["activeTab", "scripting", "storage"], | ||
"host_permissions": ["https://web.whatsapp.com/"], | ||
"content_scripts": [ | ||
{ | ||
"matches": ["https://web.whatsapp.com/"], | ||
"js": ["src/js/content_script.js"], | ||
"matches": ["https://web.whatsapp.com/*"], | ||
"js": ["src/content.js"], | ||
"css": ["src/assets/style.css"] | ||
} | ||
], | ||
"permissions": ["https://web.whatsapp.com/"], | ||
"web_accessible_resources": ["src/js/*"] | ||
"web_accessible_resources": [ | ||
{ | ||
"resources": ["src/modules/*.js"], | ||
"matches": ["https://web.whatsapp.com/*"] | ||
} | ||
], | ||
"icons": { | ||
"16": "src/assets/icons/16x16.png", | ||
"32": "src/assets/icons/32x32.png", | ||
"48": "src/assets/icons/48x48.png", | ||
"128": "src/assets/icons/128x128.png" | ||
} | ||
} |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
"use strict"; | ||
|
||
const script = document.createElement("script"); | ||
script.setAttribute("type", "module"); | ||
script.setAttribute("src", chrome.runtime.getURL("src/modules/main.js")); | ||
const body = document.body || document.getElementsByTagName("body")[0]; | ||
body.append(script); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.