Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sivagao/purify-site-playground
nw.js project which used to purify websites(inject css/js etc)~
https://github.com/sivagao/purify-site-playground
Last synced: 23 days ago
JSON representation
nw.js project which used to purify websites(inject css/js etc)~
- Host: GitHub
- URL: https://github.com/sivagao/purify-site-playground
- Owner: sivagao
- Created: 2015-04-01T06:26:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-13T12:06:18.000Z (over 9 years ago)
- Last Synced: 2024-10-14T11:11:13.339Z (2 months ago)
- Language: JavaScript
- Size: 285 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Intro
nw.js project which used to purify websites(inject css/js etc)```
webpack --progress --colors --watch -p entry.js bundle.js
cp bundle.js ~/Downloads/WebViewInjectionDemo/app/src/main/assets/min.jswhen debug, using tampermonkey
(function() {
var s = document.createElement('script');
var h = document.getElementsByTagName('head')[0];
s.src = 'http://localhost:8080/bundle.js';
s.async = 1;
h.parentNode.insertBefore(s, h);
})();
```## Screenshots
![preview case](./_materials/preview-1.png)