Skip to content

Commit

Permalink
yst - v - alpha - 0
Browse files Browse the repository at this point in the history
  • Loading branch information
biplobsd committed Mar 14, 2023
1 parent 8d097d8 commit 8eeb596
Show file tree
Hide file tree
Showing 26 changed files with 4,948 additions and 4,789 deletions.
334 changes: 167 additions & 167 deletions LICENSE.md

Large diffs are not rendered by default.

26 changes: 2 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,6 @@
![logo](/src/assets/icons/icon128.png)
# Youtube Subscriptions Transfer

# Facebook stories auto react tool

Automatically react to stories on Facebook without having to manually click on any reaction icons. This Chrome extension can help you do just that. With this extension, you can effortlessly add reactions to stories without any extra effort.

## Installation
Get the built zip from the [release](https://github.com/biplobsd/alrsf/releases/latest) tab. Then follow the instructions in the [Load unpacked extensions](#load-unpacked-extensions) section. The ***/dist*** folder should be considered as the unpacked zip files.

## Usages
Open the love icon from the extension panel. If you are not on the `https://www.facebook.com/stories/` page, then click the `Open stories page`.

![Options-script](https://user-images.githubusercontent.com/43641536/221245815-b7a0aa0b-c200-4357-b158-3d5e841ba4d2.png)

After the page has loaded, click the love icon from the extension panel again. Now you will see that the Open Popup button has turned green. Click the Open Popup button to open the Option popup, as shown in the screenshot below.

![Content-script](https://user-images.githubusercontent.com/43641536/221246872-5f32f298-7709-4da2-b753-af9274dd92b0.png)

Click the START button, and then point your mouse pointer to any reaction icon (like, love, care, haha, wow, sad, angry) that you want to give every story card. You can also set how many reactions you want to give to each card (default is 1).

When you want to stop reacting, simply click the stop button.

Youtube video usage preview below.

[![Preview](http://img.youtube.com/vi/V9LMkKN5jFQ/0.jpg)](http://www.youtube.com/watch?v=V9LMkKN5jFQ)
Under developing...

## Development

Expand Down
63 changes: 30 additions & 33 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,32 @@
{
"name": "facebook-stories-auto-react-tool",
"description": "Automatically react to stories on Facebook without having to manually click on any reaction icons.",
"version": "1.4",
"manifest_version": 3,
"icons": {
"16": "src/assets/icons/icon16.png",
"32": "src/assets/icons/icon32.png",
"48": "src/assets/icons/icon48.png",
"128": "src/assets/icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://www.facebook.com/stories/*",
"https://web.facebook.com/stories/*"
],
"js": ["src/content/index.ts"]
}
],
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": false
},
"action": {
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "src/assets/icons/icon16.png",
"32": "src/assets/icons/icon32.png",
"48": "src/assets/icons/icon48.png",
"128": "src/assets/icons/icon128.png"
}
},
"permissions": ["storage", "tabs"]
"name": "youtube-subscriptions-transfer",
"description": "Youtube subscriptions transfer",
"version": "1.0",
"manifest_version": 3,
"icons": {
"16": "src/assets/icons/icon16.png",
"32": "src/assets/icons/icon32.png",
"48": "src/assets/icons/icon48.png",
"128": "src/assets/icons/icon128.png"
},
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"js": ["src/content/index.ts"]
}
],
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": false
},
"action": {
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "src/assets/icons/icon16.png",
"32": "src/assets/icons/icon32.png",
"48": "src/assets/icons/icon48.png",
"128": "src/assets/icons/icon128.png"
}
},
"permissions": ["storage", "tabs"]
}
Loading

0 comments on commit 8eeb596

Please sign in to comment.