Burro
A Chrome Extension for Reddit
Burroとは何ですか?
BurroはJesse Patchingによって開発されたChromeの拡張機能で、その主な機能は「A Chrome Extension for Reddit」です。
拡張機能のスクリーンショット
Burro拡張機能のCRXファイルをダウンロード
Burro拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Features:
* Mark all links on the current page as read by clicking a button/tab in the header
* Mark all links on the current page as read by clicking "next" at the bottom of the page
* Mark individual links as read
* More relaxed visual style
* Fixed header, so it follows as you scroll the page
* View all images as thumbnails, and mouseover for the full sized image
- Optionally, hide all NSFW thumbnails
- Currently supports direct links to images as well as:
- imgur.com / i.imgur.com
- gfycat.com
- i.redd.it / i.reddituploads.com
- youtube.com / youtu.be
- vimeo.com
Usage:
* Install the Burro extension
* On the Burro Options page, click the features you want to enable
Source available at: https://github.com/taeram/burro 拡張機能の基本情報
| 名前 | |
| ID | bcimcgagkdildnhcmjhljonhionglmcb |
| 公式URL | https://chrome.google.com/webstore/detail/burro/bcimcgagkdildnhcmjhljonhionglmcb |
| 説明 | A Chrome Extension for Reddit |
| ファイルサイズ | 223 KB |
| インストール数 | 18 |
| 現在のバージョン | 1.4.7 |
| 最終更新日 | 2016-11-03 |
| 公開日 | 2016-11-03 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Jesse Patching |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/taeram/burro |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Burro",
"version": "1.4.7",
"manifest_version": 2,
"description": "A Chrome Extension for Reddit",
"homepage_url": "https:\/\/github.com\/taeram\/burro",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": true
},
"options_page": "src\/options_custom\/index.html",
"permissions": [
"history",
"http:\/\/reddit.com\/*",
"https:\/\/reddit.com\/*",
"http:\/\/*.reddit.com\/*",
"https:\/\/*.reddit.com\/*",
"https:\/\/www.youtube.com\/oembed*"
],
"content_scripts": [
{
"matches": [
"http:\/\/reddit.com\/*",
"https:\/\/reddit.com\/*",
"http:\/\/*.reddit.com\/*",
"https:\/\/*.reddit.com\/*"
],
"css": [
"src\/inject\/inject.css"
],
"js": [
"js\/jquery\/jquery.min.js",
"src\/inject\/inject.js"
]
}
],
"web_accessible_resources": [
"js\/jquery\/jquery.min.map"
]
} | |