{"id":34538629,"url":"https://github.com/themysterysolver/tango-solver","last_synced_at":"2026-04-11T22:32:04.295Z","repository":{"id":285199392,"uuid":"951929110","full_name":"themysterysolver/TANGO-SOLVER","owner":"themysterysolver","description":"\"A chrome extension to automate the solve for famous linkedin TANGO game\"","archived":false,"fork":false,"pushed_at":"2025-03-30T07:39:36.000Z","size":131,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-30T08:27:04.732Z","etag":null,"topics":["backtracking","extension","games","javascript","linkedin","python","tango","tango-solver"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/themysterysolver.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-20T13:15:39.000Z","updated_at":"2025-03-30T07:39:39.000Z","dependencies_parsed_at":"2025-03-30T08:37:08.952Z","dependency_job_id":null,"html_url":"https://github.com/themysterysolver/TANGO-SOLVER","commit_stats":null,"previous_names":["themysterysolver/tango-solver"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/themysterysolver/TANGO-SOLVER","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themysterysolver%2FTANGO-SOLVER","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themysterysolver%2FTANGO-SOLVER/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themysterysolver%2FTANGO-SOLVER/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themysterysolver%2FTANGO-SOLVER/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/themysterysolver","download_url":"https://codeload.github.com/themysterysolver/TANGO-SOLVER/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themysterysolver%2FTANGO-SOLVER/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27996042,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-24T02:00:07.193Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backtracking","extension","games","javascript","linkedin","python","tango","tango-solver"],"created_at":"2025-12-24T06:12:40.950Z","updated_at":"2025-12-24T06:12:41.370Z","avatar_url":"https://github.com/themysterysolver.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## 🎯TANGO SOLVER LINKEDIN\n- This is a *daily game* in linkedin I recently got playing.\n- This chrome extension solves the `TANGO game`.\n- So what does this repo do?\n  - I have created `2` **extensions**,\n    - The one you can use while you are not signed in `TANGO_EXTENSION`🏁\n    - Then the next one where you have can use when u have logged in ***linkedin***,thne use `TANGO_EXTENSION_V2`🔑\n- works with any size\n- Follows the below rules\n\n\n\n## 📜Game rules\n- let's understand the `board` first,\n    - we can have two types of shape let's say `sun` and `moon`. Onlciking each sq it changes from `sun`-\u003e`moon`-\u003e***being empty***\n    - Some tiles are locked by default.\n    - The `edge` may have **cross** and **equal** which tells the relationship between the *2 tiles*.\n- **RULE-1**: The maximum count of `sun/moon` per row or column is ***3***\n- **RULE-2**:there can't be *3 adjacent* `sun/moon`\n- **RULE-3**:You should maintain the edge consistency.\n\n## 🎥DEMO\n\nhttps://github.com/user-attachments/assets/fe2099b3-3876-4ede-877a-b3a8b9c8c881\n\n## HOW TO USE MY EXTENSION?🧠\n- Download `TANGO_EXTENSION` or `TANGO_EXTENSION_V2` on your need.\n- Go to `chrome://extensions/` .\n- Then on *top-right* enable ***developer mode***.\n- Then on *top-left* click ***Load unpacked*** browse the path where have downloaded my folder.\n- Click it.\n- Now use it as per demo.\n  \n\u003e ***FUN GUESS*** LinkedIn's Tango game likely got its name from the famous Tango dance, which is known for its synchronized and strategic movements between partners.🤭\n\n## 💡WHY THIS REPO?\n- I love shortcuts and smart work.🕺\n- I wanted code *backtracking*,I am crazy on DSA.😁\n- To learn how ***extension works!!*** 🏗️\n- How to scrape and search in a web.🔍\n- Te learn *async,await,promises*🔁\n\n## REPO STRCUTURE\n```\n├── PROTOTYPE\n│   ├── TEST CASES\n│   └── tango.js\n├── TANGO_EXTENSION\n├── TANGO_EXTENSION_V2\n│   ├── manifest.json\n│   ├── popup.html\n│   └── tango.js\n├── paste.js\n└── the_making.md\n```\n- `PROTOTYPE/tango.js` has the backtracking algo,u can run this using ***`node tango.js`***\n- `PROTOTYPE/TEST CASES` contain the test-cases which I got for validation.\n- `paste.js` is used to make my working easier.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemysterysolver%2Ftango-solver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthemysterysolver%2Ftango-solver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemysterysolver%2Ftango-solver/lists"}