Reddit : Jump to subReddit
Find all subReddit listed on a page and open them from the context menu.
Τι είναι το Reddit : Jump to subReddit;
Το Reddit : Jump to subReddit είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Arnaud Lepaul, και η κύρια λειτουργία του είναι "Find all subReddit listed on a page and open them from the context menu.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Reddit : Jump to subReddit
Λήψη αρχείων επέκτασης Reddit : Jump to subReddit σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Jump from a subReddit to another via the context menu.
Just open a Reddit.com page and you'll get a context menu with all subReddits listed in the page.
The extension catch the following patterns :
- r/subreddit
- /r/subreddit
Changelog
0.9
- Initial release
1.0.0
- New : Refresh Context menu entry
2.0.0
- Change : Using Google Chrome Manifest v2
2.0.1
- New : Auto refresh when changing tab (context menu always up-to-date when browsing a Reddit Tab)
- Change : No context menu when not on a Reddit Tab
2.0.2
- Change : Renamed to "Reddit : Jump to subReddit"
2.0.3
- Fix : changed RegExp
2.0.4
- Bugfix Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | jllllodicenbdlcllpfjekckcdmncbac |
| Επίσημο URL | https://chromewebstore.google.com/detail/reddit-jump-to-subreddit/jllllodicenbdlcllpfjekckcdmncbac |
| Περιγραφή | Find all subReddit listed on a page and open them from the context menu. |
| Μέγεθος Αρχείου | 53.74 KB |
| Αριθμός Εγκαταστάσεων | 63 |
| Τρέχουσα Έκδοση | 2.0.4 |
| Τελευταία Ενημέρωση | 2013-07-16 |
| Ημερομηνία Δημοσίευσης | 2013-07-16 |
| Προγραμματιστής | Arnaud Lepaul |
| Τύπος Πληρωμής | free |
| Υποστηριζόμενες Γλώσσες | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "2.0.4",
"name": "Reddit : Jump to subReddit",
"description": "Find all subReddit listed on a page and open them from the context menu.",
"icons": {
"128": "icon-large.png",
"16": "icon-bitty.png",
"48": "icon-small.png"
},
"background": {
"scripts": [
"eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"jquery.min.js",
"content_script.js"
],
"matches": [
"http:\/\/www.reddit.com\/*"
]
}
],
"permissions": [
"tabs",
"contextMenus",
"notifications"
],
"web_accessible_resources": [
"icon-small.png"
]
} | |