Find on Reddit

Find discussions of the current URL on Reddit

Find on Redditคืออะไร?

Find on Reddit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย adeelh และคุณลักษณะหลักของมันคือ "Find discussions of the current URL on Reddit"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Find on Reddit

ดาวน์โหลดไฟล์ส่วนขยาย Find on Reddit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Minimal, light-weight, open-source extension that finds Reddit submission threads of the current URL using Reddit's public API. You can either initiate the search by clicking the extension button, or by having auto-search enabled, which automatically does the search in the background for every URL you visit.

Other features include:
- Do an exact or a fuzzy search
- Special YouTube handling: search by video ID to find all variations of YouTube links
- Ignore URL's query-string
- Sort results by score, # of comments, age, or subreddit
- Blacklist sites to exclude them from auto-search
- Cache results for a (configurable) amount of time to reduce network usage

---------------------------------------------------------------------
GitHub:
https://github.com/AdeelH/find-on-reddit
---------------------------------------------------------------------

If you find this extension useful, please consider leaving a rating and review. In case of any issues, suggestion, or general feedback, please feel free to reach out either here or on GitHub (https://github.com/AdeelH/find-on-reddit).

---------------------------------------------------------------------
Changelog v1.5.8 (March 2023):
- Fix a bug causing links to not open in the same tab.

Changelog v1.5.6 (May 2022):
- Add option to show comment count instead of post count on extension icon when
  using auto-search.
- Migrate to Manifest V3.
- Code improvements.

Changelog v1.5.5 (August 2021):
- Can now find even more results (in some cases) by using the /duplicates
  API endpoint. (Thanks Droyk for the suggestion!)
- Can now find even more results (in some cases) by omitting the URL's protocol ("http://")
  when doing a fuzzy search.
- Fix bug that caused the popup to close after opening a link using ctrl + click.
  (Thanks Droyk for the report!)
- Minor bug fixes.

Changelog v1.5.4 (May 2021):
- Update Handlebars.js to 4.7.7 as per security advisory: https://github.com/advisories/GHSA-f2jv-r9rf-7988.

Changelog v1.5.2 (January 2021):
- Fix bug in ctrl/cmd/shift/alt+click behavior. (Thanks NovaDev94 for the report!)
- Minor improvements to the options page.

Changelog v1.5.0 (September 2020):
- Updated Handlebars.js to latest version to include recently released 
  security patch.
- Fixed bug that caused the popup size/zoom to change when a hyperlink
  was clicked (https://github.com/AdeelH/find-on-reddit/issues/17,
  thanks nkmathew for the report and debugging help).
- Fixed bug that sometimes caused the search results to not render.
- Improved ajax error handling.
- Minor fixes and improvements.

Changelog v1.4.8:
- Added option to make all links point to old.reddit.com. Enabled by default.
- UI fixes and improvements

Changelog v1.4.5:
- added option to sort search results
  - can sort on score, comments, age and subreddit
  - default sorting preference can be set in the options
- minor improvements

Changelog v1.4.1:
- reduced extension size
- added 'exact match' option to toggle between search and info API endpoints
- default options for search (exact matching, query-string, YT handling) can now be
  set on the options page
- added option to allow automatic non-exact search if exact search returns 
  0 results (default: enabled)
- added option to allow automatic retry in case of server/network error (default: enabled)
- both exact and non-exact search results are now cached for each URL simultaneously
- UI improvement: toggling the checkboxes in the popup automatically initiates
  the search without the user needing to press the search button
- UI improvement: automatically uncheck 'ignore query string' if YT video detected
- UI improvement: clear old badge on URL update
- added option to post/repost link to Reddit from the popup
- other fixes and improvements                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Find on Reddit Find on Reddit
ID jbcdpeekakanklckgooknpbonojhjncm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/find-on-reddit/jbcdpeekakanklckgooknpbonojhjncm
คำอธิบาย Find discussions of the current URL on Reddit
ขนาดไฟล์ 152 KB
จำนวนการติดตั้ง 1,203
เวอร์ชันปัจจุบัน 1.5.8
อัปเดตครั้งล่าสุด 2023-03-07
วันที่เผยแพร่ 2019-01-18
คะแนน 4.69/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา adeelh
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://github.com/AdeelH/find-on-reddit/blob/master/Privacy%20Policy.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Find on Reddit",
    "description": "Find discussions of the current URL on Reddit",
    "version": "1.5.8",
    "action": {
        "default_icon": "icon-256.png",
        "default_popup": "popup.html"
    },
    "sandbox": {
        "pages": [
            "template.html"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "ftp:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "icons": {
        "256": "icon-256.png",
        "128": "icon-128.png",
        "48": "icon-48.png",
        "16": "icon-16.png"
    }
}