Make RSS Great Again
Adds RSS buttons to websites
Make RSS Great Againคืออะไร?
Make RSS Great Again เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jrejaud และคุณลักษณะหลักของมันคือ "Adds RSS buttons to websites"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Make RSS Great Again
ดาวน์โหลดไฟล์ส่วนขยาย Make RSS Great Again ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
# Make RSS Great Again ## Install Download on Chrome/ Brave via the [Chrome Web Store](https://chrome.google.com/webstore/detail/make-rss-great-again/hgpchmdkbpnhmlioadpmggehanhogcbc) or download this repo and unpack it yourself ## Overview Returns lost RSS functionality to: * Reddit (both subreddits and individual comments pages) * Youtube * Twitter * Hackernews ## Details Before social media feeds (Twitter, Reddit, Facebook, Youtube ect) took over the internet, the web of ~ a decade ago used to rely more on RSS. Websites/Blogs had RSS icons (the orange thing with the wifi logo tilted at an angle) that generated RSS Feeds when you clicked on them. You would then add that RSS Feed to your RSS app of choice and be able to read multiple RSS feeds from multiple sources inside a single app. The way the internet works now (without RSS), you have to interface with each platform's individual proprietary app in order to see if they have updates. For example, you check the Facebook app to see your Facebook feed, you check the Twitter app to see your Twitter feed, ect. With RSS, you can "pipe" all those feeds into a single app (aka an RSS client) and get all your updates in a single app. You can also use external tools (not included in this app) to pipe some of your email to RSS, you can essentially pipe anything into RSS! Some famous RSS clients include: - Feedly, https://feedly.com/ - newsboat, (for the command line inclined) - https://alternativeto.net/browse/search?q=rss You query the net to find others. RSS is an open format, so you can even write your own client (if you are so inclined). A video explanation of how RSS Feeds work (and why RSS better than Social Media Feeds): https://www.youtube.com/watch?v=hMH9w6pyzvU RSS Icon comes from wikipedia: https://en.wikipedia.org/wiki/File:Feed-icon.svg
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | hgpchmdkbpnhmlioadpmggehanhogcbc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/make-rss-great-again/hgpchmdkbpnhmlioadpmggehanhogcbc |
คำอธิบาย | Adds RSS buttons to websites |
ขนาดไฟล์ | 6.03 MB |
จำนวนการติดตั้ง | 81 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2021-01-13 |
วันที่เผยแพร่ | 2021-01-07 |
คะแนน | 3.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | jrejaud |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/jrejaud/Make-RSS-Great-Again |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Make RSS Great Again", "version": "0.0.3", "description": "Adds RSS buttons to websites", "manifest_version": 2, "web_accessible_resources": [ "img\/*.*" ], "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "background": { "scripts": [ "background_script.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "twitter\/twitter_content_script.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube\/youtube_content_script.js" ] }, { "matches": [ "https:\/\/www.reddit.com\/*" ], "js": [ "reddit\/reddit_content_script.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/news.ycombinator.com\/*" ], "js": [ "hackernews\/hackernews_content_script.js" ], "run_at": "document_end" } ], "permissions": [ "tabs" ] } |