Reddit Stalker Extension
One-click solution to finding a users posts in any given subreddit.
什麼是Reddit Stalker Extension?
Reddit Stalker Extension是由jontelang開發的Chrome擴展程式,該擴展的主要功能是“One-click solution to finding a users posts in any given subreddit.”。
擴展截圖
下載Reddit Stalker Extension擴展crx文件
下載Reddit Stalker Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
With this extension you can search through any users submission-history in one click. It will look for specific subreddits that you choose and display links to each of the submissions.
For example if you want to find every submission in /r/funny from user ArnoldX it will return a list like this 1,2,3,4,5 where each number is a link to ArnoldXs submissions.
For support, suggestions or anything else: [email protected] 擴展基本資訊
| 名稱 | |
| ID | aiihialdkgonkmeacbemjjanjnkodhhe |
| 官方網址 | https://chrome.google.com/webstore/detail/reddit-stalker-extension/aiihialdkgonkmeacbemjjanjnkodhhe |
| 簡介 | One-click solution to finding a users posts in any given subreddit. |
| 檔案大小 | 343 KB |
| 安裝次數 | 124 |
| 目前版本 | 0.4 |
| 更新時間 | 2012-12-12 |
| 上架時間 | 2012-12-12 |
| 評分 | 2.50/5 共 2 次評分 |
| 開發者 | jontelang |
| 付費類型 | free |
| 擴展官網 | https://github.com/jontelang/RedditStalkerExtension |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reddit Stalker Extension",
"version": "0.4",
"manifest_version": 2,
"description": "One-click solution to finding a users posts in any given subreddit.",
"permissions": [
"storage"
],
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": {
"19": "icons\/19.png",
"38": "icons\/38.png"
},
"default_title": "Reddit stalk.",
"default_popup": "fragments\/popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.reddit.com\/*"
],
"js": [
"lib\/jquery-1.8.3.min.js",
"scripts\/main.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"scripts\/l.gif"
],
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
} | |