Buffer Status
Yet another extension for Buffer app.
What is Buffer Status?
Buffer Status is a Chrome extension developed by https://blog.revathskumar.com, and its main feature is "Yet another extension for Buffer app.".
Extension Screenshots
Download Buffer Status Extension CRX File
Download Buffer Status 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
* Easily add tweets/facebook status to bufferapp. * Insert Current Tab url * Url's are shortened by bit.ly
Extension Basic Information
Name | |
ID | phjogflimgkcjchomcmgaoknnaichekp |
Official URL | https://chromewebstore.google.com/detail/buffer-status/phjogflimgkcjchomcmgaoknnaichekp |
Description | Yet another extension for Buffer app. |
File Size | 68.55 KB |
Installation Count | 119 |
Current Version | 2.0.5 |
Last Updated | 2013-01-28 |
Publish Date | 2013-01-28 |
Developer | https://blog.revathskumar.com |
Payment Type | free |
Extension Website | https://github.com/revathskumar/bufferstatus |
Help Page URL | https://github.com/revathskumar/bufferstatus/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Buffer Status", "version": "2.0.5", "description": "Yet another extension for Buffer app.", "manifest_version": 2, "browser_action": { "default_icon": "images\/buffer16.png", "default_popup": "popup.html" }, "icons": { "16": "images\/buffer16.png", "48": "images\/buffer48.png", "128": "images\/buffer128.png" }, "content_scripts": [ { "matches": [ "http:\/\/bufferstatus.herokuapp.com\/auth\/buffer\/callback*" ], "js": [ "js\/jquery.min.js", "js\/contentscript.js" ], "run_at": "document_start" } ], "permissions": [ "tabs", "https:\/\/api.bufferapp.com\/*" ], "background": { "scripts": [ "js\/jquery.min.js", "js\/underscore-min.js", "js\/backbone-min.js", "js\/backbone\/buffer.js", "js\/backbone\/models\/user.js", "js\/backbone\/models\/profile.js", "js\/backbone\/views\/auth_view.js", "js\/buffer.js" ], "persistent": false } } |