Reddit Signatures
Automatically appends custom text to your posts in a given subreddit
Reddit Signaturesとは何ですか?
Reddit SignaturesはErin Bleiweissによって開発されたChromeの拡張機能で、その主な機能は「Automatically appends custom text to your posts in a given subreddit」です。
拡張機能のスクリーンショット
Reddit Signatures拡張機能のCRXファイルをダウンロード
Reddit Signatures拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Automatically inserts a custom signature to the end of each of your posts. Create signatures on a subreddit-by-subreddit basis using a visual editor and markdown previews. Toggle saved signatures on and off for easy reuse. Select the "pick at random" option to create multiple signatures for a single subreddit, which will be selected at random for each page.
Perfect for signature bets for your favorite sports subreddit. 拡張機能の基本情報
| 名前 | |
| ID | jlcchkkjagjangemnkkiigccbkjcmlla |
| 公式URL | https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla |
| 説明 | Automatically appends custom text to your posts in a given subreddit |
| ファイルサイズ | 412 KB |
| インストール数 | 13 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2015-12-21 |
| 公開日 | 2015-12-20 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Erin Bleiweiss |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Reddit Signatures",
"short_name": "Custom signatures for reddit posts",
"description": "Automatically appends custom text to your posts in a given subreddit",
"version": "1.1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"js": [
"\/js\/jquery-2.1.4.min.js",
"\/js\/content.js"
]
}
],
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"options_page": "options.html"
} | |