init commit

This commit is contained in:
2026-06-06 08:28:22 +05:30
commit 3228e9cafc
11 changed files with 1638 additions and 0 deletions

34
manifest.json Normal file
View File

@@ -0,0 +1,34 @@
{
"manifest_version": 3,
"name": "Page Editor",
"version": "1.0.0",
"description": "Edit and save text on any webpage locally",
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "Page Editor"
}
}