evernote url opener
open evernote link url on evernote app
What is evernote url opener?
evernote url opener is a Chrome extension developed by ota42y, and its main feature is "open evernote link url on evernote app".
Extension Screenshots
Download evernote url opener Extension CRX File
Download evernote url opener extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Notice!!!!!!!!!!!!
please set user id from option page.
Open evernote note url in evernote app.
Evernote note url is
https://www.evernote.com/shard/s2/view/notebook/NOTE_ID
https://www.evernote.com/shard/ID/view/notebook/NOTE_ID
https://www.evernote.com/view/notebook/NOTE_ID
https://www.evernote.com/shard/USER_SHARD/WORD/USER_ID/NOTE_ID/
https://www.evernote.com/Login.action?targetUrl=%2Fview%2Fnotebook%2FNOTE_ID
https://www.evernote.com/notelink/Login.action?targetUrl=ID%2FNOTE_ID%2F
Changelog
0.0.5
- bug fix
0.0.4
- add auto setting. Extension Basic Information
| Name | |
| ID | pjkgaadffbojkgoocbobikkklpajjbgo |
| Official URL | https://chromewebstore.google.com/detail/evernote-url-opener/pjkgaadffbojkgoocbobikkklpajjbgo |
| Description | open evernote link url on evernote app |
| File Size | 90.15 KB |
| Installation Count | 193 |
| Current Version | 0.0.5 |
| Last Updated | 2015-02-01 |
| Publish Date | 2015-01-31 |
| Rating | 1.00/5 Total 1 Ratings |
| Developer | ota42y |
| Payment Type | free |
| Supported Languages | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "evernote url opener",
"description": "open evernote link url on evernote app",
"version": "0.0.5",
"manifest_version": 2,
"permissions": [
"https:\/\/www.evernote.com\/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"32": "evernote_icon32.png",
"48": "evernote_icon48.png",
"128": "evernote_icon128.png"
},
"options_page": "options.html",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.evernote.com\/shard\/*",
"https:\/\/www.evernote.com\/view\/notebook\/*",
"https:\/\/www.evernote.com\/notelink\/Login.action*",
"https:\/\/www.evernote.com\/Login.action*"
],
"js": [
"script.js"
],
"run_at": "document_start"
}
]
} | |