mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-23 20:12:22 -06:00
bump version
This commit is contained in:
parent
5f336626e7
commit
ac6c7b1f2d
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "sky-follower-bridge",
|
"name": "sky-follower-bridge",
|
||||||
"displayName": "Sky Follower Bridge",
|
"displayName": "Sky Follower Bridge",
|
||||||
"version": "1.0.4",
|
"version": "1.0.5",
|
||||||
"description": "Instantly find and follow the same users from your Twitter follows on Bluesky.",
|
"description": "Instantly find and follow the same users from your Twitter follows on Bluesky.",
|
||||||
"author": "kawamataryou",
|
"author": "kawamataryou",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -44,6 +44,7 @@ function IndexPopup() {
|
|||||||
const saveCredentialsToStorage = () => {
|
const saveCredentialsToStorage = () => {
|
||||||
chrome.storage.local.set({
|
chrome.storage.local.set({
|
||||||
[STORAGE_KEYS.BSKY_USER_ID]: identifier,
|
[STORAGE_KEYS.BSKY_USER_ID]: identifier,
|
||||||
|
[STORAGE_KEYS.BSKY_PASSWORD]: password,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -57,10 +58,12 @@ function IndexPopup() {
|
|||||||
chrome.storage.local.get(
|
chrome.storage.local.get(
|
||||||
[
|
[
|
||||||
STORAGE_KEYS.BSKY_USER_ID,
|
STORAGE_KEYS.BSKY_USER_ID,
|
||||||
|
STORAGE_KEYS.BSKY_PASSWORD,
|
||||||
STORAGE_KEYS.BSKY_SHOW_AUTH_FACTOR_TOKEN_INPUT,
|
STORAGE_KEYS.BSKY_SHOW_AUTH_FACTOR_TOKEN_INPUT,
|
||||||
],
|
],
|
||||||
(result) => {
|
(result) => {
|
||||||
setIdentifier(result[STORAGE_KEYS.BSKY_USER_ID] || "");
|
setIdentifier(result[STORAGE_KEYS.BSKY_USER_ID] || "");
|
||||||
|
setPassword(result[STORAGE_KEYS.BSKY_PASSWORD] || "");
|
||||||
setIsShowAuthFactorTokenInput(
|
setIsShowAuthFactorTokenInput(
|
||||||
result[STORAGE_KEYS.BSKY_SHOW_AUTH_FACTOR_TOKEN_INPUT] || false,
|
result[STORAGE_KEYS.BSKY_SHOW_AUTH_FACTOR_TOKEN_INPUT] || false,
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user