Feedly Companion: More keyboard shortcuts
New Feedly keyboard shortcuts: Email Article (shift-e), Expose title/URL (shift-c), Expose URL (shift-u), Pinboard (shift-p)
Vad är Feedly Companion: More keyboard shortcuts?
Feedly Companion: More keyboard shortcuts är en Chrome-tillägg utvecklad av http://dpeck.net, och dess huvudfunktion är "New Feedly keyboard shortcuts: Email Article (shift-e), Expose title/URL (shift-c), Expose URL (shift-u), Pinboard (shift-p)".
Ladda ner Feedly Companion: More keyboard shortcuts-förlängningens CRX-fil
Ladda ner Feedly Companion: More keyboard shortcuts-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Version 1.3 adds 'send to pinboard (shift-p)'
Adds additional keyboard shortcuts to Feedly:
* Email Article (shift-e)
* Expose title and URL for copying (shift-c)
* Expose URL for copying (shift-u)
* Send to Pinboard (NEW!) (shift-p) Grundläggande Information om Tillägg
| Namn | |
| ID | pbkabpmlagjmpkpcjokaeomfaihgbjag |
| Officiell webbadress | https://chrome.google.com/webstore/detail/feedly-companion-more-key/pbkabpmlagjmpkpcjokaeomfaihgbjag |
| Beskrivning | New Feedly keyboard shortcuts: Email Article (shift-e), Expose title/URL (shift-c), Expose URL (shift-u), Pinboard (shift-p) |
| Filstorlek | 71.94 KB |
| Antal Installationer | 41 |
| Aktuell Version | 1.3 |
| Senast Uppdaterad | 2015-03-04 |
| Publiceringsdatum | 2015-03-04 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | http://dpeck.net |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Feedly Companion: More keyboard shortcuts",
"version": "1.3",
"manifest_version": 2,
"description": "New Feedly keyboard shortcuts: Email Article (shift-e), Expose title\/URL (shift-c), Expose URL (shift-u), Pinboard (shift-p)",
"icons": {
"64": "icon-64.png",
"48": "icon-48.png",
"32": "icon-32.png"
},
"permissions": [
"tabs",
"http:\/\/*.feedly.com\/*",
"https:\/\/*.feedly.com\/*"
],
"background": {
"scripts": [
"init.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*.feedly.com\/*",
"https:\/\/*.feedly.com\/*"
],
"css": [
"styles.css"
],
"js": [
"jquery.js",
"start.js"
]
}
]
} | |