Snapshot of the working tree exactly as it stood, no edits. This is the predecessor
PRICEGOD was rewritten from ("kept intact, untouched" per pricegod/README.md), and it
is still the only place the DYMO scale is actually implemented —
rfid-daemon/index.js:1068-1265: HID discovery, parseScaleReport, one-shot read, and a
streaming /weight + /scale/start|stop session whose JSON shape PRICEGOD's daemon.js
already speaks.
Preserved verbatim on purpose (hence -og), including the known bug: DYMO_PIDS at
index.js:1082 is [0x8003, 0x8004], so it cannot see the bench M25 (0x8009). Fix that
in whatever daemon inherits the scale, not here.
node_modules stays ignored (22M of the 24M tree). No credentials in the import: the
two PEM markers in utils.js/sheets.js only strip headers off a key read from settings,
and mrpadmin / johnking are an SSH and a Postgres username, both key/trust auth.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
106 lines
2.0 KiB
JSON
106 lines
2.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "PliceCogs X YT",
|
|
"version": "10.1",
|
|
"description": "Discogs pricing tool and YT cookie blagginate crossover",
|
|
"permissions": [
|
|
"activeTab",
|
|
"alarms",
|
|
"cookies",
|
|
"downloads",
|
|
"scripting",
|
|
"storage",
|
|
"tabs"
|
|
],
|
|
"host_permissions": [
|
|
"*://*.priceclogs.com/*",
|
|
"*://*.youtube.com/*",
|
|
"*://*.discogs.com/*",
|
|
"*://*.beatport.com/*",
|
|
"*://gemini.google.com/*",
|
|
"*://chat.deepseek.com/*",
|
|
"*://localhost/*",
|
|
"*://*.localhost/*",
|
|
"http://100.91.239.7:5002/*"
|
|
],
|
|
"externally_connectable": {
|
|
"matches": [
|
|
"*://localhost/*",
|
|
"*://*.localhost/*",
|
|
"*://*.local/*",
|
|
"*://*.test/*",
|
|
"*://*.dev/*"
|
|
]
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self'; img-src 'self' https://api.qrserver.com/;"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"*://*.discogs.com/*"
|
|
],
|
|
"js": [
|
|
"content.js"
|
|
]
|
|
},
|
|
{
|
|
"matches": [
|
|
"*://www.discogs.com/master/*"
|
|
],
|
|
"js": [
|
|
"monster_master.js"
|
|
],
|
|
"run_at": "document_idle"
|
|
},
|
|
{
|
|
"matches": [
|
|
"*://gemini.google.com/*"
|
|
],
|
|
"js": [
|
|
"gemini.js"
|
|
],
|
|
"run_at": "document_idle"
|
|
},
|
|
{
|
|
"matches": [
|
|
"*://chat.deepseek.com/*"
|
|
],
|
|
"js": [
|
|
"deepseek.js"
|
|
],
|
|
"run_at": "document_idle"
|
|
},
|
|
{
|
|
"matches": [
|
|
"*://localhost/*/wowplatter-admin-blagginate*",
|
|
"*://*.localhost/wp-admin/*"
|
|
],
|
|
"js": [
|
|
"blagginate-bridge.js"
|
|
]
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [
|
|
"print.js",
|
|
"utils.js",
|
|
"small.css",
|
|
"large.css",
|
|
"xlarge.css",
|
|
"label.css",
|
|
"logo.svg"
|
|
],
|
|
"matches": [
|
|
"<all_urls>"
|
|
]
|
|
}
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
}
|
|
} |