Modernize to Manifest V3 + load-unpacked install#78
Open
davidnichols-ops wants to merge 1 commit into
Open
Conversation
Migrate the extension off the deprecated Manifest V2 and the .crx sideloading model, which current versions of Chrome block. The extension now loads as an unpacked Manifest V3 extension via developer mode. - manifest.json: V2 -> V3, bump version to 2.0 - content_script.js: replace every mention of "cloud" with "butt" (case-preserving) while keeping the iconic "the cloud" -> "my butt" - Remove legacy CloudToButt.crx artifact - README: document the "Load unpacked" install workflow Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
5cf6d84 to
4cd540b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Chrome has deprecated Manifest V2 and blocks
.crxdrag-and-drop sideloading, which breaks the current install instructions. This PR modernizes the extension so it keeps working on current Chrome.manifest.json):manifest_version2 -> 3, version bumped to2.0. The content-script-only design migrates cleanly with no service worker needed.content_script.js): keeps the iconicthe cloud->my buttmapping, then replaces every remaining mention ofcloud->butt(case-preserving). Note: this is intentionally the broad approach (yes,cloudflare->buttflare) -- feel free to cherry-pick just the V3 migration if you would prefer to keep the original narrow philosophy.CloudToButt.crxartifact..crxdrag-and-drop instructions with the modernchrome://extensions-> Developer mode -> Load unpacked workflow.Test plan
manifest.jsonvalidates as JSONcontent_script.jspassesnode --checkSource/unpacked in Chrome and confirm replacements on a test pageGenerated with Devin