{"id":18118887,"url":"https://github.com/0xedward/macaroni","last_synced_at":"2026-04-30T15:32:10.390Z","repository":{"id":48615372,"uuid":"367737273","full_name":"0xedward/macaroni","owner":"0xedward","description":"encoding at the speed of copypasta","archived":false,"fork":false,"pushed_at":"2026-01-11T06:02:57.000Z","size":417,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-11T12:47:02.042Z","etag":null,"topics":["browser-extension","chrome-extension","copy-paste","encoding","javascript","security"],"latest_commit_sha":null,"homepage":"https://chrome.google.com/webstore/detail/macaroni/okpaeidpoafcnohfekdhnfedcaaoajmg","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xedward.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-15T22:00:33.000Z","updated_at":"2021-08-03T05:46:56.000Z","dependencies_parsed_at":"2022-09-05T00:21:31.081Z","dependency_job_id":null,"html_url":"https://github.com/0xedward/macaroni","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0xedward/macaroni","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xedward%2Fmacaroni","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xedward%2Fmacaroni/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xedward%2Fmacaroni/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xedward%2Fmacaroni/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xedward","download_url":"https://codeload.github.com/0xedward/macaroni/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xedward%2Fmacaroni/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32469344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["browser-extension","chrome-extension","copy-paste","encoding","javascript","security"],"created_at":"2024-11-01T05:14:08.510Z","updated_at":"2026-04-30T15:32:10.373Z","avatar_url":"https://github.com/0xedward.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Macaroni\n\u003cp align=center\u003e\n  \u003cimg alt=\"Macaroni Chrome Extension Icon\" src=\"src/assets/icon.png\"/ width=\"200px\" height=\"200px\"\u003e\u003cbr\u003e\n  \u003cb\u003eEncoding at the speed of copypasta\u003c/b\u003e\n\u003c/p\u003e\n\n\u003cp align=center\u003e\n  \u003ca href=\"https://chrome.google.com/webstore/detail/macaroni/okpaeidpoafcnohfekdhnfedcaaoajmg\"\u003e\u003cimg alt=\"Macaroni Chrome Web Store link\" src=\"https://storage.googleapis.com/chrome-gcs-uploader.appspot.com/image/WlD8wC6g8khYWPJUsQceQkhXSlv1/UV4C4ybeBTsZt43U4xis.png\"/\u003e\u003c/a\u003e\n  \u003cbr\u003e\n  \u003cimg alt=\"Extension version deployed to Chrome Web Store\" src=\"https://img.shields.io/chrome-web-store/v/okpaeidpoafcnohfekdhnfedcaaoajmg?label=Chrome%20web%20store%20version%20\"/\u003e\n  \u003cimg alt=\"Number of Extension Users\" src=\"https://img.shields.io/chrome-web-store/users/okpaeidpoafcnohfekdhnfedcaaoajmg?color=2379C83D\"/\u003e\n\u003c/p\u003e\n\nMacaroni is a Chrome extension to help you quickly copy text you select as one of the following encodings:\n  - [base64](https://en.wikipedia.org/wiki/Base64)\n  - [URL encoding](https://en.wikipedia.org/wiki/Percent-encoding)\n  - [HTML entity encoding](https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references)\n  - [JSON escaping](https://en.wikipedia.org/wiki/Escape_character#JavaScript)\n\nThis extension was created for security testing, so the encoded data it produces should not be used in a trusted context.\n\n## Installing extension from repo\n1. Download this repo as a ZIP file from GitHub.\n2. Unzip the file\n3. In Chrome, go to the extensions page - chrome://extensions\n4. Enable Developer Mode.\n5. Click Load unpacked button and select the src folder that was extracted or drag the extracted src folder anywhere on the page to import it\n\n## Permissions Audit\nIf you are curious or concerned about [the permissions requested by this extension](https://github.com/0xedward/macaroni/blob/main/src/manifest.json#L10-L14), the following is a brief explainer for each permission and where you can find it used in code:\n\n- `contextMenus` is used [to create a menu items for you to specify which encoding you want copied to your clipboard for the text you have selected](https://github.com/0xedward/macaroni/blob/main/src/background.js#L4-L26)\n- `notifications` is used [to send you notifications for when your selected text has been encoded and copied to your clipboard](https://github.com/0xedward/macaroni/blob/main/src/background.js#L53-L60)\n- `activeTab` is used [to get the text you selected to pass to the encoder or decoder](https://github.com/0xedward/macaroni/blob/main/src/background.js#L32-L35). `activeTab` is a workaround for a [Chrome bug](https://bugs.chromium.org/p/chromium/issues/detail?id=116429) with `chrome.contextMenus` API causing line breaks and new lines to not appear in `selectionText`.\n\n## Credits\nThe extension [icon](https://thenounproject.com/search/?q=macaroni\u0026i=1723765) was found on The Noun Project and was created by mikicon\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xedward%2Fmacaroni","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xedward%2Fmacaroni","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xedward%2Fmacaroni/lists"}