acorn221
acorn221
PD🧩 Plasmo Developers
Created by acorn221 on 7/5/2024 in #👾extension
Would it be possible to hide DOM changes via shadow DOMs to evade LinkedIn's detection system
The title says it all, LinkedIn doesn't like people using chrome extensions and I want to hide my extension from LinkedIn. The guy who made the "LinkedIn Helper" extension did a great write up about it here: https://bamf.com/bamf-expert-guest-post-linkedin-automation-safety/ Then settled on just creating a browser around LinkedIn so he wouldn't have to inject anything into it.
2 replies
PD🧩 Plasmo Developers
Created by acorn221 on 8/23/2023 in #👟framework
Parcel-bundler issues
https://github.com/parcel-bundler/parcel/issues/5557 I'm pretty sure I'm running into some error like this github issue, my console from a cs webpage says "Uncaught TypeError: (0 , $parcel$interopDefault(...)) is not a function" when I try and use a hash function from 'imurmurhash' and it's been a pain to debug as my dev build runs fine, it's only the output dist (even with the --no-minify flag) that has errors! Parcel-bundler (v1) is depreciated in favour of the other parcel package (v2) https://www.npmjs.com/package/parcel-bundler Is the long term plan to stick with the parcel bundler implementation, or to move to the implementation to parcel v2?
2 replies
PD🧩 Plasmo Developers
Created by acorn221 on 7/13/2023 in #👟framework
Sandboxes not applying CSP!
I'm having lots of problems with applying my custom csp to my sandboxed page. I have in my manifest overrides
"content_security_policy": {
"sandbox": "sandbox allow-scripts; script-src 'self' https://apis.google.com"
},
"content_security_policy": {
"sandbox": "sandbox allow-scripts; script-src 'self' https://apis.google.com"
},
However my CSP is always:
script-src 'self' http://localhost;object-src 'self';
script-src 'self' http://localhost;object-src 'self';
When requested, am I doing something wrong or is this just glitching? I can't seem to find much documentation on this 😦
15 replies
PD🧩 Plasmo Developers
Created by acorn221 on 4/3/2023 in #👟framework
browser.tabs.query({}) functionality?
Hi, is there a plasmo API to interface with the browser.tabs.query({}) API> If not, it would be nice to see, I've got a usecase for it where I need my background script to send a message to my content script. I know it would be possible to use the current plasmo messaging API to poll for new data, but that seems rather inefficient. I may be missing something here, but it doesn't seem to be possible to just send a message to the content script, without the content script having to request to be sent something.
2 replies