Initial snapshot before step 6 options.js split

This commit is contained in:
admin
2026-05-22 21:05:21 +02:00
commit f8e781f0e9
26 changed files with 9741 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
{
"manifest_version": 3,
"name": "rclone-jav",
"version": "0.1.0",
"description": "Check current page title against your rc-jav library via native messaging.",
"permissions": [
"nativeMessaging",
"storage",
"contextMenus",
"notifications",
"activeTab",
"scripting"
],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "rclone-jav — check page",
"default_icon": {
"32": "icons/icon-32.png",
"128": "icons/icon-128.png"
}
},
"icons": {
"32": "icons/icon-32.png",
"128": "icons/icon-128.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"commands": {
"check-current-page": {
"suggested_key": { "default": "Alt+J" },
"description": "rclone-jav: check current page title"
}
}
}