Copyright Violator
Replace Words with Other Words
What is Copyright Violator?
Copyright Violator is a Chrome extension developed by owen.astrachan, and its main feature is "Replace Words with Other Words".
Extension Screenshots
Download Copyright Violator Extension CRX File
Download Copyright Violator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Replace all occurrences of 'Duke' with 'Puke', used as an exemplar for Computer Science classes.
Extension Basic Information
Name | Copyright Violator |
ID | oiiehdjipjdjekkicepagmgmaojlcnog |
Official URL | https://chromewebstore.google.com/detail/copyright-violator/oiiehdjipjdjekkicepagmgmaojlcnog |
Description | Replace Words with Other Words |
File Size | 13.72 KB |
Installation Count | 27 |
Current Version | 0.1 |
Last Updated | 2016-04-21 |
Publish Date | 2016-04-21 |
Rating | 5.00/5 Total 3 Ratings |
Developer | owen.astrachan |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Copyright Violator", "description": "Replace Words with Other Words", "version": "0.1", "icons": { "16": "nocopy16.png", "48": "nocopy48.png", "128": "nocopy128.png" }, "browser_action": { "default_title": "Copyright Violator!", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |