Skip to content

Commit

Permalink
Package download evernote-chrome
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
tunisiano187 committed May 30, 2024
1 parent 046cd52 commit cf678fc
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 0 deletions.
41 changes: 41 additions & 0 deletions automatic/evernote-chrome/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[![](https://img.shields.io/chocolatey/v/evernote-chrome?color=green&label=evernote-chrome)](https://chocolatey.org/packages/evernote-chrome) [![](https://img.shields.io/chocolatey/dt/evernote-chrome)](https://chocolatey.org/packages/evernote-chrome)

## Evernote Web Clipper for Chrome

---

![Screenshot of Evernote for Chrome](https://lh3.googleusercontent.com/_yHyCCVqjjynQpJzLMbwbdKBAUfGZ3DpJMAseQvU5UlSWhJ-HlTZKAMO2nIIg03qIoCCbF318w=s640-h400-e365-rw)

###Use the Evernote extension to save things you see on the web into your Evernote account.

Goodbye, bookmarks. Hello, Web Clipper!
Clip the web pages you want to keep. Save them in Evernote. Easily find them on any device.

CLIP IT ALL
* Great for research—clip any article or web page
* Clip to a specific notebook and assign tags
* Use Evernote to find clips on any device

HIGHLIGHT AND SHARE
* Highlight key text from any website or article
* Use text and visual callouts to draw attention
* Share and email clips or create a URL link

CUSTOMIZE CLIPS
* Special formats for LinkedIn, Amazon and YouTube
* Clip Gmail threads and attachments
* Clip as entire page, selection, or simplified article

####PACKAGING NOTE: This installs no software. It installs a registry key for the extension that Chrome will see and then ask you for permission to enable the extension if you are in Chrome or on the next run. Chrome will install the latest version of the extension. The mentioned version is the version at time of packaging, you can ignore it. Chrome will handle updates to the extension.

---

#### [choco://evernote-chrome](choco://evernote-chrome)
To use choco:// protocol URLs, install [(unofficial) choco:// Protocol support ](https://chocolatey.org/packages/choco-protocol-support)

### Package-specific issue
If this package isn't up-to-date for some days, [Create an issue](https://github.com/tunisiano187/Chocolatey-packages/issues/new/choose)

Support the package maintainer and [![Patreon](https://cdn.jsdelivr.net/gh/tunisiano187/Chocolatey-packages@d15c4e19c709e7148588d4523ffc6dd3cd3c7e5e/icons/patreon.png)](https://www.patreon.com/tunisiano)

---
47 changes: 47 additions & 0 deletions automatic/evernote-chrome/evernote-chrome.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>evernote-chrome</id>
<version>6.10.3</version>
<title>Evernote Web Clipper for Chrome</title>
<authors>evernote.com</authors>
<owners>bcurran3</owners>
<licenseUrl>https://evernote.com/legal/tos.php</licenseUrl>
<projectUrl>https://chrome.google.com/webstore/detail/evernote-web-clipper/pioclpoplcdbaefihamjohnefbikjilc</projectUrl>
<iconUrl>https://lh3.googleusercontent.com/SfbtXUyr3kSErDzbEMmmmr1qr61E5UP6y5w7znefoc1WWbqaVrgxhsBli3-ONnef7K3ZFZnbKMs=s26-h26-e365-rw</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>![Screenshot of Evernote for Chrome](https://lh3.googleusercontent.com/_yHyCCVqjjynQpJzLMbwbdKBAUfGZ3DpJMAseQvU5UlSWhJ-HlTZKAMO2nIIg03qIoCCbF318w=s640-h400-e365-rw)

###Use the Evernote extension to save things you see on the web into your Evernote account.

Goodbye, bookmarks. Hello, Web Clipper!
Clip the web pages you want to keep. Save them in Evernote. Easily find them on any device.

CLIP IT ALL
* Great for research—clip any article or web page
* Clip to a specific notebook and assign tags
* Use Evernote to find clips on any device

HIGHLIGHT AND SHARE
* Highlight key text from any website or article
* Use text and visual callouts to draw attention
* Share and email clips or create a URL link

CUSTOMIZE CLIPS
* Special formats for LinkedIn, Amazon and YouTube
* Clip Gmail threads and attachments
* Clip as entire page, selection, or simplified article

####PACKAGING NOTE: This installs no software. It installs a registry key for the extension that Chrome will see and then ask you for permission to enable the extension if you are in Chrome or on the next run. Chrome will install the latest version of the extension. The mentioned version is the version at time of packaging, you can ignore it. Chrome will handle updates to the extension.</description>
<summary>Evernote Chrome extension</summary>
<releaseNotes>updated to new install method</releaseNotes>
<tags>evernote web clipper chrome extension</tags>
<packageSourceUrl>https://github.com/bcurran3/ChocolateyPackages/tree/master/evernote-chrome</packageSourceUrl>
<dependencies>
<dependency id="googlechrome" />
</dependencies>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>
17 changes: 17 additions & 0 deletions automatic/evernote-chrome/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
$bits = Get-ProcessorBits
$packageName = 'evernote-chrome'
$extensionID = 'pioclpoplcdbaefihamjohnefbikjilc'
if ($bits -eq 64)
{
if (Test-Path -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID")
{
Write-Host "Extension already installed." -foreground "magenta" –backgroundcolor "blue"
} else {
New-Item -Force -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID" | out-null
New-ItemProperty -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID\" -Name "update_url" -Value "https://clients2.google.com/service/update2/crx" | out-null
New-ItemProperty -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID\" -Name "ChocolateyPackageName" -Value "$packageName" | out-null
}
} else {
New-Item -Force -Path "HKLM:\SOFTWARE\Google\Chrome\Extensions\$extensionID" | out-null
New-ItemProperty -Path "HKLM:\SOFTWARE\Google\Chrome\Extensions\$extensionID\" -Name "update_url" -Value "https://clients2.google.com/service/update2/crx" | out-null
}
9 changes: 9 additions & 0 deletions automatic/evernote-chrome/tools/ChocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
$bits = Get-ProcessorBits
$packageName = 'evernote-chrome'
$extensionID = 'pioclpoplcdbaefihamjohnefbikjilc'

if ($bits -eq 64) {
Remove-Item "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID" -Force -ErrorAction SilentlyContinue | out-null
}else{
Remove-Item "HKLM:\SOFTWARE\Google\Chrome\Extensions\$extensionID" -Force -ErrorAction SilentlyContinue | out-null
}

0 comments on commit cf678fc

Please sign in to comment.