Puffer
Send your links to Buffer when reading on the Pocket Web-UI (formerly: Read-it-later).
Was ist Puffer?
Puffer ist eine Chrome-Erweiterung, die von PhilFrasty entwickelt wurde, und ihr Hauptmerkmal ist "Send your links to Buffer when reading on the Pocket Web-UI (formerly: Read-it-later).".
Erweiterungsscreenshots
Puffer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Puffer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Pocket (formerly: Read-it-later) is a service for marking articles on the web to read them later. Buffer is a service to schedule your posts to your social-media-accounts easily (e.g. to Twitter).
But there is no way to share your links to buffer (or any other social-media-services) right from the Pocket-Web-User-Interface. Thats exactly what this extension does.
It grabs the arcticle-title and article-url and sends it to the buffer-API, opens a new tab and shows you the buffer-dialog you are already used to.
This is really the ultra-first version 0.001. If something doesn't work or you have suggestions let me know.
ROADMAP:
- make an overlay over the article like the original buffer-extension (no new tabs)
- make compatible to Chrome < v20 (due to "onMessage"-events currently)
- integrate other social-services (facebook, twitter) directly
- ... Grundlegende Informationen zur Erweiterung
| Name | |
| ID | okibgglohnedabdjhojjhmflbbnghnbf |
| Offizielle URL | https://chromewebstore.google.com/detail/puffer/okibgglohnedabdjhojjhmflbbnghnbf |
| Beschreibung | Send your links to Buffer when reading on the Pocket Web-UI (formerly: Read-it-later). |
| Dateigröße | 69.22 KB |
| Installationsanzahl | 23 |
| Aktuelle Version | 0.1 |
| Letztes Update | 2012-11-29 |
| Veröffentlichungsdatum | 2012-11-29 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | PhilFrasty |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Puffer",
"version": "0.1",
"manifest_version": 2,
"homepage_url": "http:\/\/www.bitsimple.net",
"minimum_chrome_version": "20",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png"
},
"description": "Send your links to Buffer when reading on the Pocket Web-UI (formerly: Read-it-later).",
"background": {
"scripts": [
"jquery.min.js",
"popup.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/getpocket.com\/a\/read\/*",
"https:\/\/getpocket.com\/a\/read\/*"
],
"js": [
"jquery.min.js",
"send_links.js"
],
"all_frames": true
}
],
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |