├── COPYING ├── README.md └── src ├── Makefile ├── icon.png ├── manifest.json ├── popup.html ├── popup.js └── transform.js /COPYING: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) 2004 Sam Hocevar 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. 14 | 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is basically Cloud2Butt in French. 2 | 3 | # DTCloud # 4 | 5 | *Le vrai visage du Cloud* 6 | 7 | Vous en avez marre de lire « dans le cloud » toutes les trois phrases ? Remplacez 8 | facilement cette expression agaçante par « dans ton cul » sur toutes les pages que 9 | vous visitez grâce à cette extension ! 10 | 11 | Pour Firefox : https://addons.mozilla.org/fr-FR/firefox/addon/dtcloud/ 12 | 13 | Pour Chrome : https://chrome.google.com/webstore/detail/dtcloud/ojmedhcbgjeopeclmpfifmhdbiiggflh 14 | 15 | Signaler un souci : sam@hocevar.net ou https://twitter.com/samhocevar 16 | -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGETS = dtcloud-firefox.xpi dtcloud-chrome.zip dtcloud-chrome.crx 3 | 4 | SRC = manifest.json \ 5 | transform.js \ 6 | popup.html \ 7 | icon.png 8 | 9 | 10 | PARENT = $(shell cd .. ; pwd | xargs cygpath -w) 11 | 12 | all: $(TARGETS) 13 | 14 | clean: 15 | rm -f $(TARGETS) 16 | 17 | dtcloud-firefox.xpi: $(SRC) 18 | zip -r $@ $^ 19 | 20 | dtcloud-chrome.zip: $(SRC) 21 | zip -r $@ $^ 22 | 23 | dtcloud-chrome.crx: $(SRC) 24 | "/c/Program Files (x86)/Google/Chrome/Application/chrome.exe" --pack-extension="$(PARENT)\src" --pack-extension-key="$(PARENT)\dtcloud.pem" 25 | mv "$(PARENT)\src.crx" $@ 26 | 27 | -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhocevar/dtcloud/ab8cb3368de825009b434ee93b47e93784497285/src/icon.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | 4 | "name": "DTCloud", 5 | "description": "Le vrai visage du cloud", 6 | "version": "1.0", 7 | 8 | "applications": { 9 | "gecko": { 10 | "id": "dtcloud@github.com", 11 | "strict_min_version": "45.0" 12 | } 13 | }, 14 | 15 | "icons": { 16 | "48": "icon.png" 17 | }, 18 | 19 | "browser_action": { 20 | "default_icon": "icon.png", 21 | "default_popup": "popup.html" 22 | }, 23 | 24 | "content_scripts": [ { 25 | "matches": ["*://*/*"], 26 | "js": ["transform.js"], 27 | "run_at": "document_end" 28 | } ], 29 | 30 | "permissions": [ 31 | "activeTab" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |