Skip to content

Commit 928bdc3

Browse files
committed
initial commit
0 parents  commit 928bdc3

File tree

4 files changed

+86
-0
lines changed

4 files changed

+86
-0
lines changed

Icon128.png

8.29 KB
Loading

README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
This Chrome Extension replaces "financial analyst" with "fucking clown" everywhere.
2+
3+
NOT EXTENSIVELY TESTED
4+
5+
To use go to chrome://extensions, enable Developer Mode and load unpacked extension.
6+
7+
Author: https://twitter.com/xDreamCoding
8+
9+
Credits: https://twitter.com/tomaxwell for inspiration https://9to5google.com/2015/06/14/how-to-make-a-chrome-extensions/
10+
11+
12+
13+
14+
MIT License
15+
16+
Copyright (c) 2019 xDreamCoding
17+
18+
Permission is hereby granted, free of charge, to any person obtaining a copy
19+
of this software and associated documentation files (the "Software"), to deal
20+
in the Software without restriction, including without limitation the rights
21+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
22+
copies of the Software, and to permit persons to whom the Software is
23+
furnished to do so, subject to the following conditions:
24+
25+
The above copyright notice and this permission notice shall be included in all
26+
copies or substantial portions of the Software.
27+
28+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
32+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
33+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34+
SOFTWARE.

main.js

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
MutationObserver = window.MutationObserver || window.WebKitMutationObserver
2+
3+
const observer = new MutationObserver(function(mutations, observer) {
4+
mutations.forEach(mutation => {
5+
mutation.addedNodes.forEach(mutationNode => {
6+
rpl = node => {
7+
if (node.nodeType === 3) {
8+
const text = node.nodeValue
9+
const replacedText = text.replace(/inancial(\s|-)Analyst/gmi, "ucking clown")
10+
11+
if (replacedText !== text) {
12+
node.nodeValue=replacedText
13+
}
14+
} else
15+
node.childNodes.forEach(rpl)
16+
}
17+
rpl(mutationNode)
18+
})
19+
})
20+
})
21+
observer.observe(document, {
22+
subtree: true,
23+
childList: true
24+
})
25+
26+
for (let element of document.getElementsByTagName('*')) {
27+
element.childNodes.forEach(node => {
28+
if (node.nodeType === 3) {
29+
const text = node.nodeValue
30+
const replacedText = text.replace(/inancial(\s|-)Analyst/gmi, "ucking clown")
31+
32+
if (replacedText !== text)
33+
node.nodeValue=replacedText
34+
}
35+
})
36+
}

manifest.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "FckingClown",
3+
"description": "https://twitter.com/Xenius101/status/1164114105780854785",
4+
"version": "1",
5+
"manifest_version": 2,
6+
"content_scripts": [
7+
{
8+
"matches": ["<all_urls>"],
9+
"js": ["main.js"],
10+
"run_at": "document_end"
11+
}
12+
],
13+
"icons": {
14+
"128": "Icon128.png"
15+
}
16+
}

0 commit comments

Comments
 (0)