Reddit Link Opener

This extension will open all links in tabs on Reddit and all Subreddits

Reddit Link Openerคืออะไร?

Reddit Link Opener เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://whitebyte.info และคุณลักษณะหลักของมันคือ "This extension will open all links in tabs on Reddit and all Subreddits"

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

screenshot
screenshot

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

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

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

                        This Extension will open all Links on the currently opened Reddit/Subreddit Page

It works on all Subreddits and the Frontpage.

Changelog:

1.0.0 : Initial Release
1.0.1 : Bug Fix: "Only works on the Firstpage"
1.0.2 : Bug Fix: "Opens also links from 'recent viewed' "
1.0.3 : Now works for all Subreddits
1.0.4 : Only unvisited (new) Links will be opened. Can be changed on Option Page.
1.0.5 : You can choose a limit to new Tabs, default is 25. New Design For Options.
1.0.6 : Check for NFSW tag in the link Title.
1.0.7 : Removed Debug Messages.
1.0.8 : Add Keyboard Shortcut Support. Customize Shortcut in the Options. Default is Ctrl+Shift+F.
1.0.9 : Add option to Open comments.
1.0.10: Add option to Open Links directly.
1.0.11: Bugfix.
1.1.0 : Open Reddit Companion Bar automatically
1.2.0 : When no new links are found change automatically to next page - also many bugfixes
1.2.1 : Remove Debug message
1.2.2 : Goto next Page works correct now (All links purple->Press MeGusta->change to the next page)
1.2.3 : Fix Bug: Only open even links
1.2.4 : Updated to Manifest 2 and changed Name of the Extension to "Reddit Link Opener"
1.3.0 : Open only links/comments that are visible (e.g. hidden by another extensions)
1.4.0 : Do not open links that are marked as visited through Reddit Gold
1.5.0 : Mark links visited on another computer with Gold correctly
1.5.1 : Fix links not being marked as visited and opened more than once
1.6.0 : Add option to open i.redd.it and i.reddituploads.com image links directly
1.7.0 : Apply band-aid fix to support the new reddit layout
1.7.1 : Add compatibility support for old reddit layout and old.reddit.com
1.7.1.1 : Remove unrequired tabs permission

Permissions:

History: This Permission is needed to check if you already visited a link.

Source:

https://github.com/nickrussler/Reddit-Link-Opener

Credits to leblonk for the code of his "Open All Selected Links" Extension.                    

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

ชื่อ Reddit Link Opener Reddit Link Opener
ID bpjdjkonibhggbbjchphchlbonaijjme
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reddit-link-opener/bpjdjkonibhggbbjchphchlbonaijjme
คำอธิบาย This extension will open all links in tabs on Reddit and all Subreddits
ขนาดไฟล์ 80.09 KB
จำนวนการติดตั้ง 2,714
เวอร์ชันปัจจุบัน 1.7.1.1
อัปเดตครั้งล่าสุด 2022-05-27
วันที่เผยแพร่ 2018-05-28
คะแนน 4.19/5 รวมทั้งหมด 73 คะแนน
ผู้พัฒนา https://whitebyte.info
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.whitebyte.info/projects/reddit-link-opener
URL หน้าช่วยเหลือ https://github.com/nickrussler/Reddit-Link-Opener/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Link Opener",
    "description": "This extension will open all links in tabs on Reddit and all Subreddits",
    "icons": {
        "128": "img\/icon128.png"
    },
    "version": "1.7.1.1",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "img\/icon19.png",
        "default_title": "Reddit Link Opener"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.6.4.min.js",
                "shortcut.js",
                "contentScript.js"
            ],
            "matches": [
                "http:\/\/www.reddit.com\/*",
                "https:\/\/www.reddit.com\/*",
                "http:\/\/old.reddit.com\/*",
                "https:\/\/old.reddit.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "history",
        "unlimitedStorage"
    ]
}