├── .gitignore ├── .obsidian ├── app.json ├── publish.json ├── snippets └── workspace.json ├── CONTRIBUTING.md ├── Clipper-guides ├── Obsidian Web Clipper Template Guide for GitHub Releases.md └── Obsidian Web Clipper Template Guide for YouTube with transcript.md ├── Images ├── 20241020125032-github-releases.png ├── 20241020130646-github-releases-inspect.png ├── 20241020130900-github-releases-h2.png ├── 20241020131050-github-releases-markdown-body.png ├── 20241020132115-clipper-selectorHtml-markdown-body.png ├── 20241020132715-github-releases-side-by-side.png ├── 20241021093336-youtube-more.png ├── 20241021093412-youtube-show-transcript.png ├── 20241021093438-youtube-transcript.png └── 20241021093848-youtube-page-variables.png ├── LICENSE ├── Meta ├── Sample-template-guide.md └── Style-guide.md ├── README.md ├── Resources ├── Learning-about-CSS-selectors.md └── Obsidian-web-Clipper.md ├── Template-guides └── Youtube │ └── YouTube-with-transcript.md └── templates ├── apple-podcast-episode-clipper.json ├── github-issue-clipper.json ├── github-releases-clipper.json ├── github-repo-clipper.json ├── google-mail-clipper.json ├── indeed-job-applications.json ├── medium-concise-summary-clipper.json ├── reddit-post-clipper.json ├── stackademic-bullet-summary-clipper.json ├── the-hacker-news-clipper.json ├── youtube-clipper.json ├── youtube-full-description-transcript.json ├── youtube-timestamp-clipper.json └── youtube-with-transcript-clipper.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.obsidian/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/.obsidian/app.json -------------------------------------------------------------------------------- /.obsidian/publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/.obsidian/publish.json -------------------------------------------------------------------------------- /.obsidian/snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.obsidian/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/.obsidian/workspace.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Clipper-guides/Obsidian Web Clipper Template Guide for GitHub Releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Clipper-guides/Obsidian Web Clipper Template Guide for GitHub Releases.md -------------------------------------------------------------------------------- /Clipper-guides/Obsidian Web Clipper Template Guide for YouTube with transcript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Clipper-guides/Obsidian Web Clipper Template Guide for YouTube with transcript.md -------------------------------------------------------------------------------- /Images/20241020125032-github-releases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Images/20241020125032-github-releases.png -------------------------------------------------------------------------------- /Images/20241020130646-github-releases-inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Images/20241020130646-github-releases-inspect.png -------------------------------------------------------------------------------- /Images/20241020130900-github-releases-h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Images/20241020130900-github-releases-h2.png -------------------------------------------------------------------------------- /Images/20241020131050-github-releases-markdown-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Images/20241020131050-github-releases-markdown-body.png -------------------------------------------------------------------------------- /Images/20241020132115-clipper-selectorHtml-markdown-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Images/20241020132115-clipper-selectorHtml-markdown-body.png -------------------------------------------------------------------------------- /Images/20241020132715-github-releases-side-by-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Images/20241020132715-github-releases-side-by-side.png -------------------------------------------------------------------------------- /Images/20241021093336-youtube-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Images/20241021093336-youtube-more.png -------------------------------------------------------------------------------- /Images/20241021093412-youtube-show-transcript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Images/20241021093412-youtube-show-transcript.png -------------------------------------------------------------------------------- /Images/20241021093438-youtube-transcript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Images/20241021093438-youtube-transcript.png -------------------------------------------------------------------------------- /Images/20241021093848-youtube-page-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Images/20241021093848-youtube-page-variables.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /Meta/Sample-template-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Meta/Sample-template-guide.md -------------------------------------------------------------------------------- /Meta/Style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Meta/Style-guide.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Learning-about-CSS-selectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Resources/Learning-about-CSS-selectors.md -------------------------------------------------------------------------------- /Resources/Obsidian-web-Clipper.md: -------------------------------------------------------------------------------- 1 | 2 | https://obsidian.md/clipper -------------------------------------------------------------------------------- /Template-guides/Youtube/YouTube-with-transcript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/Template-guides/Youtube/YouTube-with-transcript.md -------------------------------------------------------------------------------- /templates/apple-podcast-episode-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/apple-podcast-episode-clipper.json -------------------------------------------------------------------------------- /templates/github-issue-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/github-issue-clipper.json -------------------------------------------------------------------------------- /templates/github-releases-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/github-releases-clipper.json -------------------------------------------------------------------------------- /templates/github-repo-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/github-repo-clipper.json -------------------------------------------------------------------------------- /templates/google-mail-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/google-mail-clipper.json -------------------------------------------------------------------------------- /templates/indeed-job-applications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/indeed-job-applications.json -------------------------------------------------------------------------------- /templates/medium-concise-summary-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/medium-concise-summary-clipper.json -------------------------------------------------------------------------------- /templates/reddit-post-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/reddit-post-clipper.json -------------------------------------------------------------------------------- /templates/stackademic-bullet-summary-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/stackademic-bullet-summary-clipper.json -------------------------------------------------------------------------------- /templates/the-hacker-news-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/the-hacker-news-clipper.json -------------------------------------------------------------------------------- /templates/youtube-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/youtube-clipper.json -------------------------------------------------------------------------------- /templates/youtube-full-description-transcript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/youtube-full-description-transcript.json -------------------------------------------------------------------------------- /templates/youtube-timestamp-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/youtube-timestamp-clipper.json -------------------------------------------------------------------------------- /templates/youtube-with-transcript-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obsidian-community/web-clipper-templates/HEAD/templates/youtube-with-transcript-clipper.json --------------------------------------------------------------------------------