diff --git a/automatic/evernote-chrome/README.md b/automatic/evernote-chrome/README.md new file mode 100644 index 000000000..7925a89ba --- /dev/null +++ b/automatic/evernote-chrome/README.md @@ -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) + +--- diff --git a/automatic/evernote-chrome/evernote-chrome.nuspec b/automatic/evernote-chrome/evernote-chrome.nuspec new file mode 100644 index 000000000..8f053285c --- /dev/null +++ b/automatic/evernote-chrome/evernote-chrome.nuspec @@ -0,0 +1,47 @@ + + + + evernote-chrome + 6.10.3 + Evernote Web Clipper for Chrome + evernote.com + bcurran3 + https://evernote.com/legal/tos.php + https://chrome.google.com/webstore/detail/evernote-web-clipper/pioclpoplcdbaefihamjohnefbikjilc + https://lh3.googleusercontent.com/SfbtXUyr3kSErDzbEMmmmr1qr61E5UP6y5w7znefoc1WWbqaVrgxhsBli3-ONnef7K3ZFZnbKMs=s26-h26-e365-rw + false + ![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. + Evernote Chrome extension + updated to new install method + evernote web clipper chrome extension + https://github.com/bcurran3/ChocolateyPackages/tree/master/evernote-chrome + + + + + + + + diff --git a/automatic/evernote-chrome/tools/ChocolateyInstall.ps1 b/automatic/evernote-chrome/tools/ChocolateyInstall.ps1 new file mode 100644 index 000000000..df8ec0dda --- /dev/null +++ b/automatic/evernote-chrome/tools/ChocolateyInstall.ps1 @@ -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 + } diff --git a/automatic/evernote-chrome/tools/ChocolateyUninstall.ps1 b/automatic/evernote-chrome/tools/ChocolateyUninstall.ps1 new file mode 100644 index 000000000..3be0bd7ce --- /dev/null +++ b/automatic/evernote-chrome/tools/ChocolateyUninstall.ps1 @@ -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 +}