Reddit Signatures
Automatically appends custom text to your posts in a given subreddit
Reddit Signaturesคืออะไร?
Reddit Signatures เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Erin Bleiweiss และคุณลักษณะหลักของมันคือ "Automatically appends custom text to your posts in a given subreddit"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Signatures
ดาวน์โหลดไฟล์ส่วนขยาย 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"
} | |