{"id":15164300,"url":"https://github.com/noraworld/quick-share","last_synced_at":"2026-02-27T17:02:25.191Z","repository":{"id":257364316,"uuid":"858045230","full_name":"noraworld/quick-share","owner":"noraworld","description":"Copy the current tab's title and URL to the clipboard","archived":false,"fork":false,"pushed_at":"2024-09-20T16:47:19.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T14:58:19.932Z","etag":null,"topics":["chrome","chrome-extension","chrome-extensions","clipboard","copy","quick","share","title","url"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/noraworld.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"noraworld"}},"created_at":"2024-09-16T07:53:14.000Z","updated_at":"2024-09-20T16:47:24.000Z","dependencies_parsed_at":"2025-06-01T17:43:55.884Z","dependency_job_id":null,"html_url":"https://github.com/noraworld/quick-share","commit_stats":null,"previous_names":["noraworld/quick-share"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/noraworld/quick-share","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noraworld%2Fquick-share","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noraworld%2Fquick-share/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noraworld%2Fquick-share/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noraworld%2Fquick-share/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/noraworld","download_url":"https://codeload.github.com/noraworld/quick-share/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noraworld%2Fquick-share/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29905554,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T14:46:13.553Z","status":"ssl_error","status_checked_at":"2026-02-27T14:46:10.522Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["chrome","chrome-extension","chrome-extensions","clipboard","copy","quick","share","title","url"],"created_at":"2024-09-27T03:04:00.731Z","updated_at":"2026-02-27T17:02:25.185Z","avatar_url":"https://github.com/noraworld.png","language":"JavaScript","funding_links":["https://github.com/sponsors/noraworld"],"categories":[],"sub_categories":[],"readme":"# Quick Share\nQuick Share allows you to copy the current tab's title and URL to the clipboard.\n\n![clipboard copy](assets/screenshots/clipboard_copy.png)\n\n## Installation\n* [Chrome Web Store](https://chromewebstore.google.com/detail/quick-share/kjhcidanhganlbknaalgaiahmjjialeb)\n* [Firefox Browser Add-ons](https://addons.mozilla.org/en-US/firefox/addon/quick-share/)\n\n## Usage\n- Trigger Quick Share with the default shortcut `Ctrl+Shift+A` (`MacCtrl+Ctrl+A` on macOS) or by clicking the toolbar icon.\n- The extension copies a Markdown link for the active tab in the format `[Page Title](https://example.com/path)` to your clipboard.\n- A small toast is injected into the page to confirm success (green) or failure (red). If the toast is disabled by site policies, check the browser console for errors.\n- Title rewrites are optional: open the options page to enter domain-specific regex rules if you want to trim or reshape titles before they are copied.\n\n## Technical notes\nThe extension now ships a single Manifest V3 configuration (`src/manifest.json`) that works across Chrome and Firefox. The background definition provides both a service worker (used by Chromium-based browsers) and a traditional background script fallback for Firefox, where MV3 service workers remain disabled. The runtime logic relies on `chrome.scripting.executeScript` when the API exists (Chrome/Edge) and automatically falls back to `tabs.executeScript` for browsers that are still catching up (Firefox). This keeps the code path unified while continuing to support the keyboard shortcut workflow defined in the `commands` section.\n\n### Title customization\nOpen the extension options page to add domain-specific rules that rewrite page titles before Quick Share formats the Markdown link. Each rule defines:\n\n- **Domain**: Exact hostname (supports wildcards such as `*.github.com`).\n- **Title regex**: Regular expression that is tested against the document title.\n- **Replacement**: Replacement string applied when the regex matches (defaults to `$\u0026`).\n- **Notes** *(optional)*: Free-form text to remind you what the rule is for.\n\nRules are evaluated from top to bottom, and the first match wins.\n\n![options page](assets/screenshots/options_page.png)\n\n#### Examples\n| Domain             | Title regex                                 | Replacement | Notes                                       |\n| ------------------ | ------------------------------------------- | ----------- | ------------------------------------------- |\n| `github.com`       | `(.*) · Issue #\\d+ · .*/.*`                 | `$1`        | Keep only the issue title on issue pages.   |\n| `*.youtube.com`    | `(.*) - YouTube`                            | `$1`        | Drop the \"- YouTube\" suffix from videos.    |\n| `dev.to`           | `(.*) - DEV Community`                      | `$1`        | Use article titles without the site name.   |\n| `jira.example.com` | `(\\w+-\\d+) · (.*)`                          | `$2 [$1]`   | Move Jira issue key to the end in brackets. |\n\n## Privacy\nQuick Share never phones home: all logic runs locally and the only data we touch is the current tab's title/URL (and any optional rewrite rules you configure). If you still want the legal fine print, the full policy is a short read: [Privacy Policy for Quick Share](https://www.freeprivacypolicy.com/live/6531850d-0d0b-4fdc-b8b0-59f77de5b894).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoraworld%2Fquick-share","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnoraworld%2Fquick-share","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoraworld%2Fquick-share/lists"}