hivetips
A chrome extension for tipping on social media platforms with HIVE tokens
hivetipsคืออะไร?
hivetips เป็นส่วนขยายของ Chrome ที่พัฒนาโดย altyesdev และคุณลักษณะหลักของมันคือ "A chrome extension for tipping on social media platforms with HIVE tokens"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย hivetips
ดาวน์โหลดไฟล์ส่วนขยาย hivetips ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A user friendly way to reward different social media posts with HIVE with minimal impact on the original UX. V0.6.2 and all updated versions that follow guarantee a maximum level of decentralization by ensuring that your computer and browser are the tools that you are using to accomplish the tasks. Likewise they ensure minimal usage of third party APIs.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | hivetips |
ID | pepgdkiflaefcmpogbpjpckbbddbjamc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hivetips/pepgdkiflaefcmpogbpjpckbbddbjamc |
คำอธิบาย | A chrome extension for tipping on social media platforms with HIVE tokens |
ขนาดไฟล์ | 9.26 MB |
จำนวนการติดตั้ง | 236 |
เวอร์ชันปัจจุบัน | 1.0.4 beta |
อัปเดตครั้งล่าสุด | 2021-04-04 |
วันที่เผยแพร่ | 2020-07-01 |
คะแนน | 5.00/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | altyesdev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.fullalt.com/ |
URL หน้าช่วยเหลือ | https://www.fullalt.com/ |
ภาษาที่รองรับ | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_hivetips__", "description": "__MSG_description__", "version": "1.0.4", "version_name": "1.0.4 beta", "manifest_version": 2, "default_locale": "en", "icons": { "48": "icons\/hivetips.png", "128": "icons\/hivetips.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/maxcdn.bootstrapcdn.com https:\/\/code.jquery.com; object-src 'self'; child-src 'unsafe-eval' 'self'", "web_accessible_resources": [ "icons\/*", "assets\/*" ], "browser_action": { "default_title": "hivetips", "default_popup": "popup\/popup.html", "default_icon": { "16": "icons\/hivetips.png", "32": "icons\/hivetips.png", "48": "icons\/hivetips.png", "128": "icons\/hivetips.png" } }, "permissions": [ "storage", "activeTab", "tabs", "notifications" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "contentscript\/twitter.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/*.youtube.com\/watch*" ], "js": [ "contentscript\/youtube.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/youtube.com\/*", "https:\/\/hive.blog\/*", "https:\/\/peakd.com\/*", "https:\/\/hiveblocks.com\/*" ], "js": [ "contentscript\/directtip.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/*.fullalt.com\/hivetips-callback\/*" ], "js": [ "contentscript\/callback.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/*.fullalt.com\/yt-callback\/*" ], "js": [ "contentscript\/yt-callback.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/*.fullalt.com\/e-mail-callback\/*" ], "js": [ "contentscript\/gmail-callback.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/hive.blog\/*" ], "js": [ "contentscript\/hiveblog.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/peakd.com\/*" ], "js": [ "contentscript\/peakd.js" ], "run_at": "document_idle" } ] } |