Sync working tree before initial Gitea push
- File reorg: popup/options/bulk-check moved to src/ subdirs - Shared modules: src/shared/id-extract.js, src/options/options-shared.js - Host updates: rcjav-host.py + register/install scripts - .gitignore expanded
This commit is contained in:
+27
-8
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "rclone-jav",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.52",
|
||||
"description": "Check current page title against your rc-jav library via native messaging.",
|
||||
"permissions": [
|
||||
"nativeMessaging",
|
||||
@@ -11,12 +11,14 @@
|
||||
"activeTab",
|
||||
"scripting"
|
||||
],
|
||||
"host_permissions": ["<all_urls>"],
|
||||
"host_permissions": [
|
||||
"<all_urls>"
|
||||
],
|
||||
"background": {
|
||||
"service_worker": "background.js"
|
||||
},
|
||||
"action": {
|
||||
"default_popup": "popup.html",
|
||||
"default_popup": "src/popup/popup.html",
|
||||
"default_title": "rclone-jav — check page",
|
||||
"default_icon": {
|
||||
"32": "icons/icon-32.png",
|
||||
@@ -27,18 +29,35 @@
|
||||
"32": "icons/icon-32.png",
|
||||
"128": "icons/icon-128.png"
|
||||
},
|
||||
"options_page": "options.html",
|
||||
"options_page": "src/options/options.html",
|
||||
"web_accessible_resources": [
|
||||
{
|
||||
"resources": [
|
||||
"src/options/options.html",
|
||||
"src/bulk-check/bulk-check.html"
|
||||
],
|
||||
"matches": ["<all_urls>"]
|
||||
}
|
||||
],
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["<all_urls>"],
|
||||
"js": ["content.js"],
|
||||
"matches": [
|
||||
"<all_urls>"
|
||||
],
|
||||
"js": [
|
||||
"src/shared/id-extract.js",
|
||||
"content.js"
|
||||
],
|
||||
"run_at": "document_idle"
|
||||
}
|
||||
],
|
||||
"commands": {
|
||||
"check-current-page": {
|
||||
"suggested_key": { "default": "Alt+J" },
|
||||
"suggested_key": {
|
||||
"default": "Alt+J"
|
||||
},
|
||||
"description": "rclone-jav: check current page title"
|
||||
}
|
||||
}
|
||||
},
|
||||
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAycbrL/el9uedSjN0pXQtp67tSJNc9ueL1QgSwgpo74k0d8tJuQdsGW9XIqaSV4vSlAZSa7AoTEgfMa7od1QniNrH5vlpp9YJoueCRx6GiXtEqrHT5Qdh7sjHEqOtjUTko58MUAGYSEjyGFPnranH49YOrXOrAYHGCRv+VWEA0ZA9A8SUZdJrcteUs9s4KNkZWtsQeSL6QvvZbnAvZZJgAAM1puUjNRAfc+uEwHRWe4RlObGOGS8mPdjvo+7YIKLOROrxIwtc3HkBIppTDyeywNkLcXvJH7L1QYTCdKCBTvisN3367XQdqFYTpPat2wa17z0OI+JYMaBoox4TAh3inQIDAQAB"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user