reveddit linker
Switch between viewing content on reddit and reveddit.
reveddit linker क्या है?
reveddit linker https://reveddit.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Switch between viewing content on reddit and reveddit."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में reveddit linker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
There are a few ways to use this extension:
(1) On old reddit, click the "reveddit" button under a removed comment or any post.
(2) Click the extension icon when viewing a reddit or reveddit page.
(3) Right-click on a link or page and select "View on re(ve)ddit" in the context menu.
Shift+click opens the page in a new window.
Source code: https://github.com/revddit/revddit-linker
Version History:
2021-08-17 - 0.0.0.9
- keep the sort setting from reddit
2021-07-29 - 0.0.0.8
- adds a button to removed comments and all posts on old reddit
2021-03-02 - 0.0.0.7
- updated to work with chrome extension manifest version 3
2020-08-31 - 0.0.0.6
- updated to work with new reveddit subreddit and user paths
2019-11-27 - 0.0.0.5
- changes for revddit.com -> www.reveddit.com
2019-10-28 - 0.0.0.4
- reduce permissions by using 'activeTab' rather than 'tabs' in manifest.json एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | jgnigeenijnjlahckhfomimnjadmkmah |
| आधिकारिक URL | https://chromewebstore.google.com/detail/reveddit-linker/jgnigeenijnjlahckhfomimnjadmkmah |
| विवरण | Switch between viewing content on reddit and reveddit. |
| फ़ाइल का आकार | 106 KB |
| स्थापना संख्या | 1,481 |
| वर्तमान संस्करण | 0.0.0.9 |
| अंतिम अपडेट | 2021-08-17 |
| प्रकाशन तिथि | 2019-11-26 |
| रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
| डेवलपर | https://reveddit.com |
| ईमेल | [email protected] |
| भुगतान के प्रकार | free |
| गोपनीयता नीति पृष्ठ URL | https://docs.google.com/document/d/e/2PACX-1vTxfh-y3cnIE1Y495pfcJykWNLQRg8xIYLOZ7xHqcaktjI_Y_N5ZQuAnfMhtOrJaDD8bUirVQkD8tuy/pub |
| समर्थित भाषाएँ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "reveddit linker",
"short_name": "reveddit link",
"description": "Switch between viewing content on reddit and reveddit.",
"version": "0.0.0.9",
"permissions": [
"contextMenus"
],
"host_permissions": [
"https:\/\/*.reddit.com\/*",
"https:\/\/*.reveddit.com\/*"
],
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"action": {
"default_icon": {
"16": "icons\/16.png",
"24": "icons\/24.png",
"32": "icons\/32.png"
},
"default_title": "View on re(ve)ddit"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.reveddit.com\/*",
"https:\/\/*.reddit.com\/*"
],
"js": [
"lib\/jquery-3.2.1.min.js",
"lib\/arrive.js",
"content.js"
]
}
],
"manifest_version": 3
} | |